[PHP-DEV] CVS update: php3 From: jim (php-dev <email protected>)
Date: 06/30/99

Date: Wednesday June 30, 1999 @ 15:18
Author: jim

Update of /repository/php3
In directory php:/tmp/cvs-serv23198

Modified Files:
        configure.in
Log Message:
Fix bison version test.

Index: php3/configure.in
diff -u php3/configure.in:1.419 php3/configure.in:1.420
--- php3/configure.in:1.419 Tue Jun 29 15:30:38 1999
+++ php3/configure.in Wed Jun 30 15:18:14 1999
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.419 1999/06/29 19:30:38 sas Exp $
+dnl $Id: configure.in,v 1.420 1999/06/30 19:18:14 jim Exp $
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(main.c)
@@ -19,7 +19,7 @@
     AC_MSG_WARN(You will need bison if you'd want to regenerate the PHP 3.0 parsers.)
 else
     AC_MSG_CHECKING(bison version)
- set `bison --version| sed -e 's/^GNU Bison version //' -e 's/\./ /'`
+ set `bison --version| sed -e 's/^GNU Bison version //' -e 's/\./ /g'`
     if test "$1" = "1" -a "$2" -lt "25"; then
         AC_MSG_WARN(You will need bison 1.25 if you'd want to regenerate the PHP 3.0 parsers (found $1.$2).)
     fi
@@ -2420,7 +2420,7 @@
 ])
 
 AC_ARG_WITH(gdbm,
-[ --with-gdbm[=DIR] Include DBA GDBM support],[
+[ --with-gdbm[=DIR] Include GDBM support],[
   if test "$withval" != "no"; then
     for i in /usr/local /usr $withval; do
       if test -f "$i/include/gdbm.h"; then
@@ -2438,11 +2438,11 @@
     AC_DBA_STD_ATTACH
   fi
 ])
-AC_MSG_CHECKING(for DBA GDBM support)
+AC_MSG_CHECKING(for GDBM support)
 AC_DBA_STD_RESULT
 
 AC_ARG_WITH(ndbm,
-[ --with-ndbm[=DIR] Include DBA NDBM support],[
+[ --with-ndbm[=DIR] Include NDBM support],[
   if test "$withval" != "no"; then
     for i in /usr/local /usr $withval; do
       if test -f "$i/include/db1/ndbm.h" ; then
@@ -2473,11 +2473,11 @@
     AC_DBA_STD_ATTACH
   fi
 ])
-AC_MSG_CHECKING(for DBA NDBM support)
+AC_MSG_CHECKING(for NDBM support)
 AC_DBA_STD_RESULT
 
 AC_ARG_WITH(db2,
-[ --with-db2[=DIR] Include DBA DB2 support],[
+[ --with-db2[=DIR] Include DB2 support],[
   if test "$withval" != "no"; then
     for i in /usr/local /usr /usr/BerkeleyDB $withval; do
       if test -f "$i/db2/db.h"; then
@@ -2518,11 +2518,11 @@
     AC_DBA_STD_ATTACH
   fi
 ])
-AC_MSG_CHECKING(for DBA DB2 support)
+AC_MSG_CHECKING(for DB2 support)
 AC_DBA_STD_RESULT
 
 AC_ARG_WITH(dbm,
-[ --with-dbm[=DIR] Include DBA DBM support],[
+[ --with-dbm[=DIR] Include DBM support],[
   if test "$withval" != "no"; then
     for i in /usr/local /usr $withval; do
       if test -f "$i/include/dbm.h" ; then
@@ -2541,11 +2541,11 @@
     AC_DBA_STD_ATTACH
   fi
 ])
-AC_MSG_CHECKING(for DBA DBM support)
+AC_MSG_CHECKING(for DBM support)
 AC_DBA_STD_RESULT
 
 AC_ARG_WITH(cdb,
-[ --with-cdb[=DIR] Include DBA CDB support],[
+[ --with-cdb[=DIR] Include CDB support],[
   if test "$withval" != "no"; then
     for i in /usr/local /usr $withval; do
       if test -f "$i/include/cdb.h" ; then
@@ -2564,10 +2564,10 @@
     AC_DBA_STD_ATTACH
   fi
 ])
-AC_MSG_CHECKING(for DBA CDB support)
+AC_MSG_CHECKING(for CDB support)
 AC_DBA_STD_RESULT
 
-AC_MSG_CHECKING(whether to enable DBA interface)
+AC_MSG_CHECKING(whether to enable DBM interface)
 if test "$HAVE_DBA" = "1"; then
   AC_MSG_RESULT(yes)
   AC_DEFINE(HAVE_DBA, 1)

-- 
PHP Development Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>