mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00: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:
parent
93d95255e5
commit
61c5220296
@ -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>
|
Tue Apr 29 07:32:02 MDT 2003 John Fleck <jfleck@inkstain.ent>
|
||||||
|
|
||||||
* doc/tutorial/aph.html, ix01.html
|
* doc/tutorial/aph.html, ix01.html
|
||||||
|
2
NEWS
2
NEWS
@ -25,7 +25,7 @@ to test those - More testing on RelaxNG
|
|||||||
(Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser
|
(Charles Bozeman), DTD and namespaces (Brent Hendricks), HTML push parser
|
||||||
and zero bytes handling, some missing Windows file path conversions,
|
and zero bytes handling, some missing Windows file path conversions,
|
||||||
behaviour of the parser and validator in the presence of "out of memory"
|
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
|
- extended the API to be able to plug a garbage collecting memory
|
||||||
allocator, added xmlMallocAtomic() and modified the allocations
|
allocator, added xmlMallocAtomic() and modified the allocations
|
||||||
accordingly.
|
accordingly.
|
||||||
|
@ -182,6 +182,10 @@ newTextReaderFilename()
|
|||||||
# functions from module xmlregexp
|
# functions from module xmlregexp
|
||||||
regexpCompile()
|
regexpCompile()
|
||||||
|
|
||||||
|
# functions from module xmlschemastypes
|
||||||
|
schemaCleanupTypes()
|
||||||
|
schemaInitTypes()
|
||||||
|
|
||||||
# functions from module xmlunicode
|
# functions from module xmlunicode
|
||||||
uCSIsAlphabeticPresentationForms()
|
uCSIsAlphabeticPresentationForms()
|
||||||
uCSIsArabic()
|
uCSIsArabic()
|
||||||
|
@ -60,7 +60,17 @@ while test $# -gt 0; do
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
--libs)
|
--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
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
|
@ -940,7 +940,7 @@ xmlTextReaderReadState(xmlTextReaderPtr reader) {
|
|||||||
* @reader: the xmlTextReaderPtr used
|
* @reader: the xmlTextReaderPtr used
|
||||||
*
|
*
|
||||||
* Reads the contents of the current node and the full subtree. It then makes
|
* 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
|
* Returns a node pointer valid until the next xmlTextReaderRead() call
|
||||||
* or NULL in case of error.
|
* or NULL in case of error.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user