helly           Sat Jan 25 14:46:58 2003 EDT

  Modified files:              
    /php4/ext/dba       config.m4 
  Log:
  The builtin version was always used even if configured otherwise.
  
Index: php4/ext/dba/config.m4
diff -u php4/ext/dba/config.m4:1.34 php4/ext/dba/config.m4:1.35
--- php4/ext/dba/config.m4:1.34 Mon Dec 30 12:42:55 2002
+++ php4/ext/dba/config.m4      Sat Jan 25 14:46:58 2003
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.34 2002/12/30 17:42:55 helly Exp $
+dnl $Id: config.m4,v 1.35 2003/01/25 19:46:58 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