do not reference strdup() ! trying to fix the libs of the various config

* globals.c: do not reference strdup() !
* configure.in libxml-2.0.pc.in: trying to fix the libs
  of the various config extraction modules
Daniel
This commit is contained in:
Daniel Veillard 2001-12-09 14:00:54 +00:00
parent ef90ba7e3b
commit b82c16694d
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
* globals.c: do not reference strdup() !
* configure.in libxml-2.0.pc.in: trying to fix the libs
of the various config extraction modules
Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in : preparing 2.4.12

View File

@ -447,7 +447,8 @@ iconv (cd, NULL, NULL, NULL, NULL);],[
LIBS="${_libs}"
LDFLAGS="${_ldflags}"])]))
fi
XML_LIBS="-lxml2 $Z_LIBS $ICONV_LIBS -lm $LIBS"
M_LIBS="-lm"
XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
AC_SUBST(WITH_ICONV)
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])

View File

@ -55,7 +55,7 @@ xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlMemoryStrdup;
xmlFreeFunc xmlFree = (xmlFreeFunc) free;
xmlMallocFunc xmlMalloc = (xmlMallocFunc) malloc;
xmlReallocFunc xmlRealloc = (xmlReallocFunc) realloc;
xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) strdup;
xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlStrdup;
#endif
#include <libxml/threads.h>

View File

@ -8,5 +8,5 @@ Name: libXML
Version: @VERSION@
Description: libXML library version2.
Requires:
Libs: -L${libdir} -lxml2 @Z_LIBS@ @M_LIBS@ @LIBS@
Libs: -L${libdir} -lxml2 @THREAD_LIBS@ @Z_LIBS@ @M_LIBS@ @LIBS@
Cflags: -I${includedir}/libxml2 @XML_CFLAGS@