1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

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

2
NEWS
View File

@ -25,7 +25,7 @@ to test those - More testing on RelaxNG
(Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser
and zero bytes handling, some missing Windows file path conversions,
behaviour of the parser and validator in the presence of "out of memory"
error conditions
error conditions
- extended the API to be able to plug a garbage collecting memory
allocator, added xmlMallocAtomic() and modified the allocations
accordingly.

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)
echo @XML_LIBDIR@ @XML_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.