Loosen the Libxml2/xslt version requirement. We require libxslt 1.1.11
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Feb 2006 08:55:36 +0000 (08:55 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Feb 2006 08:55:36 +0000 (08:55 +0000)
or later (rather than 1.1.12 or later). Thus the xslt filter can
be used on the stock libxml2 on Mac OS X Tiger.

configure.in

index e56bce5..b61fbc6 100644 (file)
@@ -1,5 +1,5 @@
 dnl Zebra, Index Data ApS, 1995-2005
-dnl $Id: configure.in,v 1.130 2006-02-09 08:42:55 adam Exp $
+dnl $Id: configure.in,v 1.131 2006-02-09 08:55:36 adam Exp $
 dnl
 AC_INIT(include/idzebra/version.h)
 AM_INIT_AUTOMAKE(idzebra,1.4.0)
@@ -52,8 +52,8 @@ if test "$xsltdir" != "no"; then
                XSLT_VER=`$xsltdir/bin/xslt-config --version`
                AC_MSG_RESULT($XSLT_VER)
                have_xslt_version=`echo "$XSLT_VER" | awk 'BEGIN { FS = "."; } { printf "%d", ([$]1 * 1000 + [$]2) * 1000 + [$]3;}'`
-               if test $have_xslt_version -lt 1001012; then
-                       AC_MSG_WARN([libXSLT too old. Use 1.1.12 or later.])
+               if test $have_xslt_version -lt 1001011; then
+                       AC_MSG_WARN([libXSLT too old. Use 1.1.11 or later.])
                        XSLT_VER=""
                else
                        XSLT_LIBS=`$xsltdir/bin/xslt-config --libs`