Candidate libxml-1.8.5, include jody libz patch, Daniel
diff --git a/ChangeLog b/ChangeLog
index 98559d8..6fc6b61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
+
+	* configure.in: prepared for libxml-1.8.5
+	* doc/* recompiled the documentation
+
+2000-01-17  Jody Goldberg <jgoldberg@home.com>
+
+	* configure.in : WARNING autoconf subtlety alert :
+	  Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
+	  when looking for zlib.h so that HAVE_ZLIB_H is defined.
+	* config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
+	  get defined by AC_CHECK_HEADERS.
+
 Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
 
 	* tree.c: fixed a hideous bug in xmlGetProp() thanks to
diff --git a/config.h.in b/config.h.in
index b3b74ec..da75401 100644
--- a/config.h.in
+++ b/config.h.in
@@ -123,6 +123,9 @@
 /* Define if you have the <unistd.h> header file.  */
 #undef HAVE_UNISTD_H
 
+/* Define if you have the <zlib.h> header file.  */
+#undef HAVE_ZLIB_H
+
 /* Define if you have the inet library (-linet).  */
 #undef HAVE_LIBINET
 
diff --git a/configure.in b/configure.in
index 2f4d9ce..e3b5844 100644
--- a/configure.in
+++ b/configure.in
@@ -5,7 +5,7 @@
 
 LIBXML_MAJOR_VERSION=1
 LIBXML_MINOR_VERSION=8
-LIBXML_MICRO_VERSION=4
+LIBXML_MICRO_VERSION=5
 LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
 LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
 
@@ -46,7 +46,7 @@
   fi
 ])
 
-AC_CHECK_HEADER(zlib.h,
+AC_CHECK_HEADERS(zlib.h,
     AC_CHECK_LIB(z, gzread,[
 	AC_DEFINE(HAVE_LIBZ)
         if test "x${Z_DIR}" != "x"; then
diff --git a/doc/xml.html b/doc/xml.html
index a9d91da..7c2ac59 100644
--- a/doc/xml.html
+++ b/doc/xml.html
@@ -149,6 +149,11 @@
   <li>adding APIs to parse a well balanced chunk of XML (production <a
     href="http://www.w3.org/TR/REC-xml#NT-content">[43] content</a> of the XML
     spec)</li>
+  <li>fixed a hideous bug in xmlGetProp pointed by Rune.Djurhuus@fast.no</li>
+  <li>Jody Goldberg &lt;jgoldberg@home.com> provided another patch trying to
+    solve the zlib checks problems</li>
+  <li>The current state in gnome CVS base is expected to ship as 1.8.5 with
+    gnumeric soon</li>
 </ul>
 
 <h3>1.8.4: Jan 13 2000</h3>
@@ -991,6 +996,6 @@
 
 <p><a href="mailto:Daniel.Veillard@w3.org">Daniel Veillard</a></p>
 
-<p>$Id: xml.html,v 1.20 2000/01/05 19:54:23 veillard Exp $</p>
+<p>$Id: xml.html,v 1.21 2000/01/14 14:45:21 veillard Exp $</p>
 </body>
 </html>