mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-11 18:09:31 +08:00
Candidate libxml-1.8.5, include jody libz patch, Daniel
This commit is contained in:
parent
f967b904c2
commit
461a66c942
13
ChangeLog
13
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
|
||||
|
@ -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
|
||||
|
||||
|
@ -5,7 +5,7 @@ AM_CONFIG_HEADER(config.h)
|
||||
|
||||
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 @@ AC_ARG_WITH(zlib,
|
||||
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
|
||||
|
@ -149,6 +149,11 @@ for really accurate description</h3>
|
||||
<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 <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 @@ base under gnome-xml/example</p>
|
||||
|
||||
<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>
|
||||
|
Loading…
Reference in New Issue
Block a user