Re: [Monetdb-developers] pathfinder __func___ not declared

2008-02-25 Thread Stefan Manegold
Hi, Pathfinder requires C99 features that are not supported by the Microsoft Visual C/C++ compiler; hence, on Windows, Pathfinder can only with the Intel C/C++ compiler. See http://monetdb.cwi.nl/projects/monetdb//MonetDB/Documentation/Windows-Installation.html#Windows-Installation for details. S

[Monetdb-developers] pathfinder __func___ not declared

2008-02-25 Thread mobigital-nbl
does anyone know what may be the issue causing this compilation error: this is when buildng "pathfinder" on win64. other components have built successfully - buildtoold, MonetDB, clients, MonetDB4, MonetDB5, sql. C:\monetdb\pathfinder\NT>nmake /nologo BITS64=1 NEED_MX=1 DEBUG=1 HAVE_ICONV=1 HA

[Monetdb-developers] iconv.dll DEBUG version

2008-02-25 Thread mobigital-nbl
can someone advise how to build the iconvd.dll (debug version) of iconv. on windows 64 bit platform. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/M

Re: [Monetdb-developers] libxml2 LINK error on win64.

2008-02-25 Thread mobigital-nbl
Sjoerd Mullender wrote: > The functions the linker complains about are freeaddrinfo and > getaddrinfo. These functions are only used in sections inside #ifdef > SUPPORT_IP6/#endif. So it seems you have the symbol SUPPORT_IP6 defined > somewhere. You need to find out where that is defined. M

Re: [Monetdb-developers] libxml2 LINK error on win64.

2008-02-25 Thread mobigital-nbl
i found this reference to libxml2 issue: http://osdir.com/ml/lang.perl.xml/2004-03/msg00082.html it suggested to put undefs in the specific source files nanohttp.c and nanoftp.c i added to nanohttp.c: #undef SUPPORT_IP6 #undef HAVE_GETADDRINFO to nanoftp.c: #undef SUPPORT_IP6 after that it c

Re: [Monetdb-developers] libxml2 LINK error on win64.

2008-02-25 Thread Sjoerd Mullender
mobigital1 wrote: > Hi, > > I am trying to build on windows 2003 x64, and was able to build a few > prerequisites, however, > libxml2 is not linking due to this error: > > nanohttp.obj : error LNK2019: unresolved external symbol __imp_freeaddrinfo > referenced in function xmlNanoHTTPConnectHost >