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
diff --git a/ChangeLog b/ChangeLog
index 50d870b..803dbcf 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 8d907a3..12e6867 100644
--- a/NEWS
+++ b/NEWS
@@ -25,7 +25,7 @@
     (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 b570806..e4587f8 100644
--- a/python/libxml2class.txt
+++ b/python/libxml2class.txt
@@ -182,6 +182,10 @@
 # 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 da31e7f..7282186 100644
--- a/xml2-config.in
+++ b/xml2-config.in
@@ -60,7 +60,17 @@
        	;;
 
     --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 c7b4015..c7ae1c8 100644
--- a/xmlreader.c
+++ b/xmlreader.c
@@ -940,7 +940,7 @@
  * @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.