Date: 06/01/99
- Next message: Bug Database: "[PHP-DEV] Bug #1150 Updated: ./configure doesn't honor --without-mod_charset"
- Previous message: Bug Database: "[PHP-DEV] Bug #655 Updated: Failure to create makefile when ORACLE is selected as an option."
- Next in thread: jim: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Bug Database: "[PHP-DEV] Bug #1150 Updated: ./configure doesn't honor --without-mod_charset"
- Previous message: Bug Database: "[PHP-DEV] Bug #655 Updated: Failure to create makefile when ORACLE is selected as an option."
- Next in thread: jim: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

