try to fix Red hat bug #89957, do not output -L/usr/lib64 fixed a typo in

* xml2-config.in: try to fix Red hat bug #89957, do not
  output -L/usr/lib64
* xmlreader.c: fixed a typo in a comment
Daniel
This commit is contained in:
Daniel Veillard 2003-04-30 12:20:34 +00:00
parent 93d95255e5
commit 61c5220296
5 changed files with 23 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Wed Apr 30 14:16:08 CEST 2003 Daniel Veillard <daniel@veillard.com>
* xml2-config.in: try to fix Red hat bug #89957, do not
output -L/usr/lib64
* xmlreader.c: fixed a typo in a comment
Tue Apr 29 07:32:02 MDT 2003 John Fleck <jfleck@inkstain.ent>
* doc/tutorial/aph.html, ix01.html

View File

@ -182,6 +182,10 @@ newTextReaderFilename()
# functions from module xmlregexp
regexpCompile()
# functions from module xmlschemastypes
schemaCleanupTypes()
schemaInitTypes()
# functions from module xmlunicode
uCSIsAlphabeticPresentationForms()
uCSIsArabic()

View File

@ -60,7 +60,17 @@ while test $# -gt 0; do
;;
--libs)
if [ "`uname`" = "Linux" ]
then
if [ "@XML_LIBDIR@" = "-L/usr/lib64" ]
then
echo @XML_LIBS@
else
echo @XML_LIBDIR@ @XML_LIBS@
fi
else
echo @XML_LIBDIR@ @XML_LIBS@
fi
;;
*)

View File

@ -940,7 +940,7 @@ xmlTextReaderReadState(xmlTextReaderPtr reader) {
* @reader: the xmlTextReaderPtr used
*
* Reads the contents of the current node and the full subtree. It then makes
* the subtree availsble until the next xmlTextReaderRead() call
* the subtree available until the next xmlTextReaderRead() call
*
* Returns a node pointer valid until the next xmlTextReaderRead() call
* or NULL in case of error.