helly           Sat Jan 25 14:51:05 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/ext/dba       config.m4 
  Log:
  MFH: The builtin version was always used even if configured otherwise.
  
Index: php4/ext/dba/config.m4
diff -u php4/ext/dba/config.m4:1.29.2.3 php4/ext/dba/config.m4:1.29.2.4
--- php4/ext/dba/config.m4:1.29.2.3     Mon Dec 30 14:13:44 2002
+++ php4/ext/dba/config.m4      Sat Jan 25 14:51:05 2003
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.29.2.3 2002/12/30 19:13:44 helly Exp $
+dnl $Id: config.m4,v 1.29.2.4 2003/01/25 19:51:05 helly Exp $
 dnl
 
 dnl Suppose we need FlatFile if no support or only CDB is used.
@@ -327,7 +327,7 @@
 
 AC_ARG_WITH(cdb,
 [  --with-cdb[=DIR]          DBA: Include CDB support],[
-  if test "$withval" != "no"; then
+  if test "$withval" = "yes"; then
     PHP_DBA_BUILTIN_CDB
   elif test "$withval" != "no"; then
     PHP_DBA_STD_BEGIN



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to