Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-03-03 Thread Earnie
> From: Nick Wellnhofer > > On 02/03/2015 18:51, James Franco wrote: > > -lwsock32 -lwsock32 -lkernel32 > > int.mingw/nanohttp.o:nanohttp.c:(.text+0x7a1): undefined reference to > > `__imp_getaddrinfo' > > I think you need -lws2_32 instead of -lwsock32 on 64-bit Windows. > You should use -lws2_

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-03-02 Thread James Franco
When attempting to build the 64 bit I get reference errors as such int.mingw/c14n.o:c14n.c:(.text+0xb69): undefined reference to `xmlStrcmp' int.mingw/c14n.o:c14n.c:(.text+0xbd9): undefined reference to `xmlStrEqual' int.mingw/c14n.o:c14n.c:(.text+0xbfc): undefined reference to `xmlStrEqual' int.m

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-03-02 Thread Nick Wellnhofer
On 02/03/2015 18:51, James Franco wrote: -lwsock32 -lwsock32 -lkernel32 int.mingw/nanohttp.o:nanohttp.c:(.text+0x7a1): undefined reference to `__imp_getaddrinfo' I think you need -lws2_32 instead of -lwsock32 on 64-bit Windows. Nick ___ xml mailing

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-03-02 Thread James Franco
so after further exploring I managed to build libxml on my 32 version of Mingw compiler. However when I attempt to build it on the 64 bit compiler I am still not having any success. Here is what I am doing. The two commands that I am using are as follows. The outputs of these commands are given bel

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-02-28 Thread Roumen Petrov
James Franco wrote: I am attempting to build libxml using the following way on windows 7 with Mingw GCC 64 bit > ./configure --without-python --with-zlib=/usr/local --with-lzma=/usr/local This is what I get after executing that command. It says the system cannot find the specified file.

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-02-27 Thread James Franco
Sorry the first command used was cscript.exe configure.js compiler=mingw prefix=c:/tester debug=yes static=yes On Thu, Feb 26, 2015 at 3:50 PM, James Franco wrote: > I am attempting to build libxml using the following way on windows 7 with > Mingw GCC 64 bit > > > ./configure --without-pyt

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-02-27 Thread James Franco
So Now I am going across this thread http://stackoverflow.com/questions/3429101/building-the-latest-iconv-and-libxml2-binaries-in-win32 and this is what I do: It looks like i am getting socket based issues and that it should be using -lws2_32 however its not. Any suggestions on how I can fix this

Re: [xml] Issue building libxml2 with mingw 64bit gcc

2015-02-26 Thread Bjoern Hoehrmann
* James Franco wrote: >admin@US01WKS03044 /c/libxml2-2.6.30 >$ make64 >make all-recursive >process_begin: CreateProcess(NULL, make all-recursive, ...) failed. >make (e=2): The system cannot find the file specified. >Makefile:560: recipe for target 'all' failed >make64: *** [all] Error 2 > >any sug