summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-07-17 00:05:09 +0000
committerZeev Suraski <zeev@php.net>1999-07-17 00:05:09 +0000
commitaf58c35f5cc276d76d57fd889bfba7c72f39bad3 (patch)
tree1a5ce6d179c9a4309275a03ac6bc5dddd60ce79a
parent8a15917de1f934890ff1710b2cdfe336657495be (diff)
downloadphp-git-af58c35f5cc276d76d57fd889bfba7c72f39bad3.tar.gz
Remove MEMORY_LIMIT from PHP, it's a Zend issue...
-rw-r--r--acconfig.h.in3
-rw-r--r--configure.in.in16
2 files changed, 0 insertions, 19 deletions
diff --git a/acconfig.h.in b/acconfig.h.in
index b89717449d..de24375054 100644
--- a/acconfig.h.in
+++ b/acconfig.h.in
@@ -103,9 +103,6 @@
/* Define if you want to prevent the CGI from using path_info and path_translated */
#define DISCARD_PATH 0
-/* Define if you want to enable memory limit support */
-#define MEMORY_LIMIT 0
-
/* Define if you want include() and other functions to be able to open
* http and ftp URLs as files.
*/
diff --git a/configure.in.in b/configure.in.in
index 554c5b872f..cf4ecf8301 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -839,22 +839,6 @@ AC_ARG_ENABLE(discard_path,
])
fi
-AC_MSG_CHECKING(whether to enable a memory limit)
-AC_ARG_ENABLE(memory-limit,
-[ --enable-memory-limit Compile with memory limit support. ],
-[
- if test "$enableval" = "yes"; then
- AC_DEFINE(MEMORY_LIMIT, 1)
- AC_MSG_RESULT(yes)
- else
- AC_DEFINE(MEMORY_LIMIT, 0)
- AC_MSG_RESULT(no)
- fi
-],[
- AC_DEFINE(MEMORY_LIMIT, 0)
- AC_MSG_RESULT(no)
-])
-
AC_MSG_CHECKING(whether to enable short tags by default)
AC_ARG_ENABLE(short-tags,
[ --disable-short-tags Disable the short-form <? start tag by default.],