summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2003-06-29 15:07:03 +0000
committerDerick Rethans <derick@php.net>2003-06-29 15:07:03 +0000
commit913cec65517f11ebd972f920d1d320b853a175dd (patch)
tree71d9f38192f2e2d78aa41a0f40aeb192e026bdd6
parent7218a70ff684e476a2fd4f0ed75a466de5f5c724 (diff)
downloadphp-git-913cec65517f11ebd972f920d1d320b853a175dd.tar.gz
- Remove register_globals warning, and "built-in MySQL lib" warning
-rw-r--r--configure.in24
1 files changed, 0 insertions, 24 deletions
diff --git a/configure.in b/configure.in
index 7bda74b15a..e7a2d85eb5 100644
--- a/configure.in
+++ b/configure.in
@@ -1273,20 +1273,6 @@ cat <<X
X
fi
- if test "$MYSQL_MODULE_TYPE" = "builtin" && test "$PHP_SAPI" != "cgi" && test "$PHP_SAPI" != "cli" && test "$php_multiple_shlib_versions_ok" != "yes"; then
-cat <<X
-+--------------------------------------------------------------------+
-| *** WARNING *** |
-| |
-| You chose to compile PHP with the built-in MySQL support. If you |
-| are compiling a server module, and intend to use other server |
-| modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, |
-| mod_perl) you must NOT rely on PHP's built-in MySQL support, and |
-| instead build it with your local MySQL support files, by adding |
-| --with-mysql=/path/to/mysql to your configure line. |
-X
- fi
-
# Warn about linking Apache with libpthread if oci8 extension is enabled on linux.
if test "$PHP_OCI8" != "no" -o "$PHP_ORACLE" != "no"; then
if test "$PHP_SAPI" = "apache"; then
@@ -1322,16 +1308,6 @@ cat <<X
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point. |
+--------------------------------------------------------------------+
-| *** NOTE *** |
-| The default for register_globals is now OFF! |
-| |
-| If your application relies on register_globals being ON, you |
-| should explicitly set it to on in your php.ini file. |
-| Note that you are strongly encouraged to read |
-| http://www.php.net/manual/en/security.registerglobals.php |
-| about the implications of having register_globals set to on, and |
-| avoid using it if possible. |
-+--------------------------------------------------------------------+
Thank you for using PHP.