bjori           Fri Sep  8 16:41:02 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/xsl    config.m4 
  Log:
  Bump libxslt version to 1.1.0 (closes bug#35589)
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/xsl/config.m4?r1=1.11&r2=1.11.4.1&diff_format=u
Index: php-src/ext/xsl/config.m4
diff -u php-src/ext/xsl/config.m4:1.11 php-src/ext/xsl/config.m4:1.11.4.1
--- php-src/ext/xsl/config.m4:1.11      Sun May 29 23:16:45 2005
+++ php-src/ext/xsl/config.m4   Fri Sep  8 16:41:01 2006
@@ -1,9 +1,9 @@
 dnl
-dnl $Id: config.m4,v 1.11 2005/05/29 23:16:45 sniper Exp $
+dnl $Id: config.m4,v 1.11.4.1 2006/09/08 16:41:01 bjori Exp $
 dnl
 
 PHP_ARG_WITH(xsl, for XSL support,
-[  --with-xsl[=DIR]        Include new XSL support (requires libxslt >= 
1.0.18).
+[  --with-xsl[=DIR]        Include new XSL support (requires libxslt >= 1.1.0).
                           DIR is the libxslt install directory])
 
 if test "$PHP_XSL" != "no"; then
@@ -24,7 +24,7 @@
   done
 
   if test -z "$XSLT_CONFIG"; then
-    AC_MSG_ERROR([xslt-config not found. Please reinstall the libxslt >= 
1.0.18 distribution])
+    AC_MSG_ERROR([xslt-config not found. Please reinstall the libxslt >= 1.1.0 
distribution])
   else
     libxslt_full_version=`$XSLT_CONFIG --version`
     ac_IFS=$IFS
@@ -32,7 +32,7 @@
     set $libxslt_full_version
     IFS=$ac_IFS
     LIBXSLT_VERSION=`expr [$]1 \* 1000000 + [$]2 \* 1000 + [$]3`
-    if test "$LIBXSLT_VERSION" -ge "1000018"; then
+    if test "$LIBXSLT_VERSION" -ge "1001000"; then
       XSL_LIBS=`$XSLT_CONFIG --libs`
       XSL_INCS=`$XSLT_CONFIG --cflags`
       PHP_EVAL_LIBLINE($XSL_LIBS, XSL_SHARED_LIBADD)
@@ -54,7 +54,7 @@
         AC_DEFINE(HAVE_XSL_EXSLT,1,[ ])
       fi
     else
-      AC_MSG_ERROR([libxslt version 1.0.18 or greater required.])
+      AC_MSG_ERROR([libxslt version 1.1.0 or greater required.])
     fi
     
   

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to