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

Date: Tuesday June 1, 1999 @ 16:50
Author: jim

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

Modified Files:
        configure.in
Log Message:
Fix bug #1150 (mod_charset option handling was incomplete).

Index: php3/configure.in
diff -u php3/configure.in:1.384 php3/configure.in:1.385
--- php3/configure.in:1.384 Tue Jun 1 16:31:09 1999
+++ php3/configure.in Tue Jun 1 16:50:31 1999
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.384 1999/06/01 20:31:09 andrey Exp $
+dnl $Id: configure.in,v 1.385 1999/06/01 20:50:31 jim Exp $
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(main.c)
@@ -566,8 +566,12 @@
 AC_ARG_WITH(mod_charset,
 [ --with-mod_charset Enable transfer tables for mod_charset (Rus Apache).],
 [
+ if test "$withval" = "yes"; then
         AC_MSG_RESULT(yes)
- AC_DEFINE(USE_TRANSFER_TABLES)
+ AC_DEFINE(USE_TRANSFER_TABLES)
+ else
+ AC_MSG_RESULT(no)
+ fi
 ],[
         AC_MSG_RESULT(no)
 ])

-- 
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>