]> granicus.if.org Git - php/commitdiff
The PHP_EXTENSION() has to be before any other PHP_ARG_*()'s
authorfoobar <sniper@php.net>
Wed, 9 May 2001 15:38:29 +0000 (15:38 +0000)
committerfoobar <sniper@php.net>
Wed, 9 May 2001 15:38:29 +0000 (15:38 +0000)
ext/sablot/config.m4
ext/xslt/config.m4

index 15b5d6995394c957fe04f27975180b89a813c60b..9bf4324e1bdea1017ab1bdf25467ba0e6270c9a7 100644 (file)
@@ -6,6 +6,8 @@ PHP_ARG_WITH(sablot, for Sablotron XSL support,
 
 if test "$PHP_SABLOT" != "no"; then
 
+  PHP_EXTENSION(sablot, $ext_shared)
+
   PHP_ARG_WITH(expat-dir, libexpat dir for Sablotron 0.50,
   [  --with-expat-dir=DIR    Sablotron: libexpat dir for Sablotron 0.50])
 
@@ -71,5 +73,4 @@ if test "$PHP_SABLOT" != "no"; then
   
   AC_DEFINE(HAVE_SABLOT,1,[ ])
 
-  PHP_EXTENSION(sablot, $ext_shared)
 fi
index a4e89e2432fea26512143f928835bcdda1dc4888..f5cf260380df64471bbdbb388af619ed6e0e63f0 100644 (file)
@@ -10,6 +10,8 @@ PHP_ARG_ENABLE(xslt, whether to enable xslt support,
 
 if test "$PHP_XSLT" != "no"; then
 
+       PHP_EXTENSION(xslt, $ext_shared)
+
        PHP_ARG_WITH(xslt-sablot, whether to enable the sablotron backend,
        [  --with-xslt-sablot      Enable the sablotron backend])
 
@@ -95,5 +97,4 @@ if test "$PHP_XSLT" != "no"; then
        fi
 
        AC_DEFINE(HAVE_XSLT, 1, [ ])
-       PHP_EXTENSION(xslt, $ext_shared)
 fi