mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
ef90ba7e3b
commit
b82c16694d
@ -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>
|
Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* configure.in : preparing 2.4.12
|
* configure.in : preparing 2.4.12
|
||||||
|
@ -447,7 +447,8 @@ iconv (cd, NULL, NULL, NULL, NULL);],[
|
|||||||
LIBS="${_libs}"
|
LIBS="${_libs}"
|
||||||
LDFLAGS="${_ldflags}"])]))
|
LDFLAGS="${_ldflags}"])]))
|
||||||
fi
|
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_SUBST(WITH_ICONV)
|
||||||
|
|
||||||
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
|
AC_ARG_WITH(debug, [ --with-debug Add the debugging module (on)])
|
||||||
|
@ -55,7 +55,7 @@ xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlMemoryStrdup;
|
|||||||
xmlFreeFunc xmlFree = (xmlFreeFunc) free;
|
xmlFreeFunc xmlFree = (xmlFreeFunc) free;
|
||||||
xmlMallocFunc xmlMalloc = (xmlMallocFunc) malloc;
|
xmlMallocFunc xmlMalloc = (xmlMallocFunc) malloc;
|
||||||
xmlReallocFunc xmlRealloc = (xmlReallocFunc) realloc;
|
xmlReallocFunc xmlRealloc = (xmlReallocFunc) realloc;
|
||||||
xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) strdup;
|
xmlStrdupFunc xmlMemStrdup = (xmlStrdupFunc) xmlStrdup;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <libxml/threads.h>
|
#include <libxml/threads.h>
|
||||||
|
@ -8,5 +8,5 @@ Name: libXML
|
|||||||
Version: @VERSION@
|
Version: @VERSION@
|
||||||
Description: libXML library version2.
|
Description: libXML library version2.
|
||||||
Requires:
|
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@
|
Cflags: -I${includedir}/libxml2 @XML_CFLAGS@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user