[Python-checkins] CVS: python/dist/src configure.in,1.190,1.191 configure,1.182,1.183

Sjoerd Mullender sjoerd@users.sourceforge.net
Wed, 17 Jan 2001 01:42:24 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv20589

Modified Files:
	configure.in configure 
Log Message:
Fixed typo: Using --with-dbm had no effect because due to a typo it
was never enabled.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.190
retrieving revision 1.191
diff -C2 -r1.190 -r1.191
*** configure.in	2001/01/17 08:25:10	1.190
--- configure.in	2001/01/17 09:42:21	1.191
***************
*** 924,928 ****
  
  # 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"
  then
      if test "$with_dbm" != "no"
--- 924,928 ----
  
  # enabled by default but one of the dbm.h files must be found
! 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"

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.182
retrieving revision 1.183
diff -C2 -r1.182 -r1.183
*** configure	2001/01/17 08:25:10	1.182
--- configure	2001/01/17 09:42:21	1.183
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.189 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.190 
  
  # Guess values for system-dependent variables and create Makefiles.
***************
*** 4059,4063 ****
  
  # 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"
  then
      if test "$with_dbm" != "no"
--- 4059,4063 ----
  
  # enabled by default but one of the dbm.h files must be found
! 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"