Kaydet (Commit) 124698cb authored tarafından Sjoerd Mullender's avatar Sjoerd Mullender

Fixed typo: Using --with-dbm had no effect because due to a typo it

was never enabled.
üst 79b334ba
#! /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"
......
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment