- libxslt/xslt.c: avoid a stupid bug when compiling with
authorDaniel Veillard <veillard@src.gnome.org>
Fri, 22 Jun 2001 14:18:43 +0000 (14:18 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Fri, 22 Jun 2001 14:18:43 +0000 (14:18 +0000)
  libxml < 2.3.11 and without LIBXML_DEBUG_ENABLED
Daniel

ChangeLog
libxslt/xslt.c

index 40a2213..7ecd03f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jun 22 16:17:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
+
+       * libxslt/xslt.c: avoid a stupid bug when compiling with
+         libxml < 2.3.11 and without LIBXML_DEBUG_ENABLED
+
 Fri Jun 22 00:11:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
 
        * libxslt/numbers.c: fix of a small bug
index 5f1cbc5..69b2e5d 100644 (file)
@@ -45,6 +45,13 @@ const int xsltLibxsltVersion = LIBXSLT_VERSION;
 const int xsltLibxmlVersion = LIBXML_VERSION;
 
 /*
+ * Harmless but avoiding a problem when compiling against a
+ * libxml <= 2.3.11 without LIBXML_DEBUG_ENABLED
+ */
+#ifndef LIBXML_DEBUG_ENABLED
+double xmlXPathStringEvalNumber(const xmlChar *str);
+#endif
+/*
  * Useful macros
  */