]> granicus.if.org Git - python/commitdiff
Fixed typo: Using --with-dbm had no effect because due to a typo it
authorSjoerd Mullender <sjoerd@acm.org>
Wed, 17 Jan 2001 09:42:21 +0000 (09:42 +0000)
committerSjoerd Mullender <sjoerd@acm.org>
Wed, 17 Jan 2001 09:42:21 +0000 (09:42 +0000)
was never enabled.

configure
configure.in

index 7e3d3536c09b912633dc328b84cd657aa200859f..9beeb474a68a9712bf4e5eeed59d6d9d2c1f3006 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# From configure.in Revision: 1.189 
+# From configure.in Revision: 1.190 
 
 # Guess values for system-dependent variables and create Makefiles.
 # Generated automatically using autoconf version 2.13 
@@ -4058,7 +4058,7 @@ fi
 
 
 # enabled by default but one of the dbm.h files must be found
-if test "$ac_cv_header_dbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes"
+if test "$ac_cv_header_ndbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes"
 then
     if test "$with_dbm" != "no"
     then with_dbm="yes"
index 55e93cdb418fc8394ceacfc6d65d50efa2de0a54..8e9d83c43f5eb09741d44400858ab544f156836e 100644 (file)
@@ -923,7 +923,7 @@ AC_ARG_WITH(dbm,
 [  --with(out)-dbm                 disable/enable dbm module])
 
 # enabled by default but one of the dbm.h files must be found
-if test "$ac_cv_header_dbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes"
+if test "$ac_cv_header_ndbm_h" = "yes" -o "$ac_cv_header_db1_ndbm_h" = "yes" -o "$ac_cv_header_gdbm_ndbm_h" = "yes"
 then
     if test "$with_dbm" != "no"
     then with_dbm="yes"