mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
Applied a patch from Kevin P. Fleming to add --libtool-libs option to
* configure.in xml2-config.in: Applied a patch from Kevin P. Fleming to add --libtool-libs option to xml2-config script. Daniel
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Mon Sep 1 22:31:38 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* configure.in xml2-config.in: Applied a patch from Kevin P. Fleming
|
||||||
|
to add --libtool-libs option to xml2-config script.
|
||||||
|
|
||||||
Sun Aug 31 21:52:12 PDT 2003 William Brack <wbrack@mmm.com.hk>
|
Sun Aug 31 21:52:12 PDT 2003 William Brack <wbrack@mmm.com.hk>
|
||||||
|
|
||||||
* doc/README.docs, doc/Makefile.am: new file added,
|
* doc/README.docs, doc/Makefile.am: new file added,
|
||||||
|
@ -17,6 +17,11 @@ htmlIsBooleanAttr()
|
|||||||
htmlNewDoc()
|
htmlNewDoc()
|
||||||
htmlNewDocNoDtD()
|
htmlNewDocNoDtD()
|
||||||
|
|
||||||
|
# functions from module SAX2
|
||||||
|
defaultSAXHandlerInit()
|
||||||
|
docbDefaultSAXHandlerInit()
|
||||||
|
htmlDefaultSAXHandlerInit()
|
||||||
|
|
||||||
# functions from module catalog
|
# functions from module catalog
|
||||||
catalogAdd()
|
catalogAdd()
|
||||||
catalogCleanup()
|
catalogCleanup()
|
||||||
|
@ -14,6 +14,7 @@ Known values for OPTION are:
|
|||||||
|
|
||||||
--prefix=DIR change libxml prefix [default $prefix]
|
--prefix=DIR change libxml prefix [default $prefix]
|
||||||
--libs print library linking information
|
--libs print library linking information
|
||||||
|
--libtool-libs print linking information for use with libtool
|
||||||
--cflags print pre-processor and compiler flags
|
--cflags print pre-processor and compiler flags
|
||||||
--help display this help and exit
|
--help display this help and exit
|
||||||
--version output version information
|
--version output version information
|
||||||
@ -59,6 +60,10 @@ while test $# -gt 0; do
|
|||||||
echo @XML_INCLUDEDIR@ @XML_CFLAGS@
|
echo @XML_INCLUDEDIR@ @XML_CFLAGS@
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
--libtool-libs)
|
||||||
|
echo ${libdir}/@XML_LIBTOOLLIBS@
|
||||||
|
;;
|
||||||
|
|
||||||
--libs)
|
--libs)
|
||||||
if [ "`uname`" = "Linux" ]
|
if [ "`uname`" = "Linux" ]
|
||||||
then
|
then
|
||||||
|
Reference in New Issue
Block a user