summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--NEWS2
-rw-r--r--python/libxml2class.txt4
-rw-r--r--xml2-config.in12
-rw-r--r--xmlreader.c2
5 files changed, 23 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 50d870b1..803dbcfa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/NEWS b/NEWS
index 8d907a38..12e68671 100644
--- a/NEWS
+++ b/NEWS
@@ -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.
diff --git a/python/libxml2class.txt b/python/libxml2class.txt
index b5708062..e4587f88 100644
--- a/python/libxml2class.txt
+++ b/python/libxml2class.txt
@@ -182,6 +182,10 @@ newTextReaderFilename()
# functions from module xmlregexp
regexpCompile()
+# functions from module xmlschemastypes
+schemaCleanupTypes()
+schemaInitTypes()
+
# functions from module xmlunicode
uCSIsAlphabeticPresentationForms()
uCSIsArabic()
diff --git a/xml2-config.in b/xml2-config.in
index da31e7f1..72821869 100644
--- a/xml2-config.in
+++ b/xml2-config.in
@@ -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
;;
*)
diff --git a/xmlreader.c b/xmlreader.c
index c7b4015f..c7ae1c8e 100644
--- a/xmlreader.c
+++ b/xmlreader.c
@@ -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.