diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2004-05-16 20:35:57 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2004-05-16 20:35:57 +0000 |
commit | 16ee5eddd575de6c83adb44e77acbcbe1b999153 (patch) | |
tree | b4e8be1a2c514d886b1da6591773ebc43f000051 | |
parent | f86a7de1b3d96c8a8228cbee1bb414190658d4bd (diff) | |
download | libxslt-16ee5eddd575de6c83adb44e77acbcbe1b999153.tar.gz libxslt-16ee5eddd575de6c83adb44e77acbcbe1b999153.tar.bz2 libxslt-16ee5eddd575de6c83adb44e77acbcbe1b999153.zip |
applied patch from Edward Rudd to fix the problems raised in bug #142429
* libxslt.m4: applied patch from Edward Rudd to fix the problems
raised in bug #142429
Daniel
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libxslt.m4 | 9 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,8 @@ +Sun May 16 16:36:38 CEST 2004 Daniel Veillard <daniel@veillard.com> + + * libxslt.m4: applied patch from Edward Rudd to fix the problems + raised in bug #142429 + Sun May 16 11:01:52 CEST 2004 Daniel Veillard <daniel@veillard.com> * libxslt/xslt.c: fixed a weird namespace bug #141532 @@ -6,7 +6,7 @@ # Owen Taylor 97-11-3 # # Modified to work with libxslt by Thomas Schraitle 2002/10/25 -# +# Fixed by Edward Rudd 2004/05/12 dnl AM_PATH_XSLT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for XML, and define XML_CFLAGS and XML_LIBS @@ -20,7 +20,7 @@ AC_ARG_WITH(xslt-exec-prefix, xslt_config_exec_prefix="$withval", xslt_config_exec_prefix="") AC_ARG_ENABLE(xslttest, [ --disable-xslttest Do not try to compile and run a test LIBXSLT program],, - enable_xslttest=no) + enable_xslttest=yes) if test x$xslt_config_exec_prefix != x ; then xslt_config_args="$xslt_config_args --exec-prefix=$xslt_config_exec_prefix" @@ -64,6 +64,7 @@ dnl #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <libxslt/xsltconfig.h> #include <libxslt/xslt.h> int main() @@ -106,8 +107,8 @@ main() /* Less than ideal -- doesn't provide us with return value feedback, * only exits if there's a serious mismatch between header and library. */ - /* copied from LIBXXML_TEST_VERSION; */ - xmlCheckVersion(LIBXSLT_VERSION_STRING); + /* copied from LIBXML_TEST_VERSION; */ + xmlCheckVersion(LIBXML_VERSION); /* Test that the library is greater than our minimum version */ if ((xslt_major_version > major) || |