If more than two --with-database= items are given, an error is given
indicating an unknown database specification was given. However, this
isn't the case, the sed command to separate the comma separated list only
replaces the first comma. All that needs to be changed is adding a 'g' to
the sed command.
*** configure.in~orig Thu Jun 18 19:42:04 1998
--- configure.in Thu Jun 18 19:42:17 1998
***************
*** 570,576 ****
with_database_berkdb=no
with_database_dbm=no
with_database_gnudbm=no
! for x in `echo "$val" | sed -e 's/,/ /'` ; do
case "$x" in
no ) ;;
b | be | ber | berk | berkd | berkdb ) with_database_berkdb=yes ;;
--- 570,576 ----
with_database_berkdb=no
with_database_dbm=no
with_database_gnudbm=no
! for x in `echo "$val" | sed -e 's/,/ /g'` ; do
case "$x" in
no ) ;;
b | be | ber | berk | berkd | berkdb ) with_database_berkdb=yes ;;