1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-08 21:42:07 +03:00

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
This commit is contained in:
Daniel Veillard
2004-05-16 20:35:57 +00:00
parent f86a7de1b3
commit 16ee5eddd5
2 changed files with 10 additions and 4 deletions

View File

@@ -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> Sun May 16 11:01:52 CEST 2004 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: fixed a weird namespace bug #141532 * libxslt/xslt.c: fixed a weird namespace bug #141532

View File

@@ -6,7 +6,7 @@
# Owen Taylor 97-11-3 # Owen Taylor 97-11-3
# #
# Modified to work with libxslt by Thomas Schraitle 2002/10/25 # 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 AM_PATH_XSLT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for XML, and define XML_CFLAGS and XML_LIBS 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="") xslt_config_exec_prefix="$withval", xslt_config_exec_prefix="")
AC_ARG_ENABLE(xslttest, AC_ARG_ENABLE(xslttest,
[ --disable-xslttest Do not try to compile and run a test LIBXSLT program],, [ --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 if test x$xslt_config_exec_prefix != x ; then
xslt_config_args="$xslt_config_args --exec-prefix=$xslt_config_exec_prefix" xslt_config_args="$xslt_config_args --exec-prefix=$xslt_config_exec_prefix"
@@ -64,6 +64,7 @@ dnl
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <libxslt/xsltconfig.h>
#include <libxslt/xslt.h> #include <libxslt/xslt.h>
int int
main() main()
@@ -106,8 +107,8 @@ main()
/* Less than ideal -- doesn't provide us with return value feedback, /* Less than ideal -- doesn't provide us with return value feedback,
* only exits if there's a serious mismatch between header and library. * only exits if there's a serious mismatch between header and library.
*/ */
/* copied from LIBXXML_TEST_VERSION; */ /* copied from LIBXML_TEST_VERSION; */
xmlCheckVersion(LIBXSLT_VERSION_STRING); xmlCheckVersion(LIBXML_VERSION);
/* Test that the library is greater than our minimum version */ /* Test that the library is greater than our minimum version */
if ((xslt_major_version > major) || if ((xslt_major_version > major) ||