From: Marcus Boerger Date: Sun, 18 May 2003 12:36:24 +0000 (+0000) Subject: Enable bundled submodules when enabling module X-Git-Tag: RELEASE_1_0_2~764 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80aa82e24b38c6c9cc646d1eb248f96b2551ca16;p=php Enable bundled submodules when enabling module --- diff --git a/ext/dba/config.m4 b/ext/dba/config.m4 index 53ce333e5b..2a1a393d58 100644 --- a/ext/dba/config.m4 +++ b/ext/dba/config.m4 @@ -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 ])