# HG changeset patch # User Stephen J. Turnbull # Date 1201225253 -32400 # Node ID 2f000e022a8b6dd6980692125625174e2a5cacd7 # Parent 6dffa171b748df57c3751e756b8650d7331bbe65 Fix misspelling of option 'gdbm'. diff -r 6dffa171b748 -r 2f000e022a8b ChangeLog --- a/ChangeLog Fri Jan 25 10:39:46 2008 +0900 +++ b/ChangeLog Fri Jan 25 10:40:53 2008 +0900 @@ -1,3 +1,7 @@ +2008-01-25 Stephen J. Turnbull + + * configure.ac (--with-database): 'gnudbm' -> 'gdbm' in docstrings. + 2008-01-17 Aidan Kehoe * configure.ac: diff -r 6dffa171b748 -r 2f000e022a8b configure --- a/configure Fri Jan 25 10:39:46 2008 +0900 +++ b/configure Fri Jan 25 10:40:53 2008 +0900 @@ -1661,7 +1661,7 @@ --with-database=TYPE Compile with database support. Valid types are `no' or a comma-separated list of one or more of `berkdb' - and either `dbm' or `gnudbm'. + and either `dbm' or `gdbm'. --with-ldap Support the LDAP protocol. --with-postgresql Support the PostgreSQL RDBMS. @@ -3772,7 +3772,7 @@ if test "$enable_database_dbm" = "yes" -a "$enable_database_gdbm" = "yes"; then (echo "$progname: Usage error:" -echo " " "Only one of \`dbm' and \`gnudbm' may be specified +echo " " "Only one of \`dbm' and \`gdbm' may be specified with the \`--with-database' option." echo " Use \`$progname --help' to show usage.") >&2 && exit 1 fi diff -r 6dffa171b748 -r 2f000e022a8b configure.ac --- a/configure.ac Fri Jan 25 10:39:46 2008 +0900 +++ b/configure.ac Fri Jan 25 10:40:53 2008 +0900 @@ -866,10 +866,10 @@ XE_COMPLEX_ARG([database], AS_HELP_STRING([--enable-database=TYPE],[Compile with database support. Valid types are `no' or a comma-separated list of one or more - of `berkdb' and either `dbm' or `gnudbm'.]), + of `berkdb' and either `dbm' or `gdbm'.]), [ if test "$enable_database_dbm" = "yes" -a "$enable_database_gdbm" = "yes"; then - USAGE_ERROR("Only one of \`dbm' and \`gnudbm' may be specified + USAGE_ERROR("Only one of \`dbm' and \`gdbm' may be specified with the \`--with-database' option.") fi ],