From: Marcus Boerger Date: Sun, 18 May 2003 12:36:34 +0000 (+0000) Subject: MFH: Enable bundled submodules when enabling module X-Git-Tag: BEFORE_FD_REVERT~40 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86ce37ce217c6d0f049bd0f93c84c23b770d7021;p=php MFH: Enable bundled submodules when enabling module --- diff --git a/ext/dba/config.m4 b/ext/dba/config.m4 index 360be9af24..30467e3b48 100644 --- a/ext/dba/config.m4 +++ b/ext/dba/config.m4 @@ -355,7 +355,7 @@ AC_DEFUN(PHP_DBA_BUILTIN_CDB,[ AC_ARG_WITH(cdb, [ --with-cdb[=DIR] DBA: Include CDB support],[ - if test "$withval" = "yes"; then + if test "$withval" = "yes" -o "$HAVE_DBA" = "1"; then PHP_DBA_BUILTIN_CDB elif test "$withval" != "no"; then PHP_DBA_STD_BEGIN @@ -385,7 +385,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 ]) @@ -407,7 +407,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 ])