From 86ce37ce217c6d0f049bd0f93c84c23b770d7021 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 18 May 2003 12:36:34 +0000 Subject: [PATCH] MFH: Enable bundled submodules when enabling module --- ext/dba/config.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ]) -- 2.40.0