]> granicus.if.org Git - php/commitdiff
Enable bundled submodules when enabling module
authorMarcus Boerger <helly@php.net>
Sun, 18 May 2003 12:36:24 +0000 (12:36 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 18 May 2003 12:36:24 +0000 (12:36 +0000)
ext/dba/config.m4

index 53ce333e5b98ceba808f4ebb3ae33987a89ee26e..2a1a393d5891f959251841ea69cee721bc0ea24f 100644 (file)
@@ -383,7 +383,7 @@ AC_ARG_WITH(cdb,
     PHP_DBA_STD_ATTACH
   fi
 ],[
-  if test "$PHP_DBA" != "no"; then
+  if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then
     PHP_DBA_BUILTIN_CDB
   fi
 ])
@@ -402,7 +402,7 @@ AC_ARG_WITH(inifile,
     PHP_DBA_BUILTIN_INI
   fi
 ],[
-  if test "$PHP_DBA" != "no"; then
+  if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then
     PHP_DBA_BUILTIN_INI
   fi
 ])
@@ -424,7 +424,7 @@ AC_ARG_WITH(flatfile,
     PHP_DBA_BUILTIN_FLATFILE
   fi
 ],[
-  if test "$PHP_DBA" != "no"; then
+  if test "$PHP_DBA" != "no" -o "$HAVE_DBA" = "1"; then
     PHP_DBA_BUILTIN_FLATFILE
   fi
 ])