diff options
-rw-r--r-- | acconfig.h.in | 3 | ||||
-rw-r--r-- | configure.in.in | 16 |
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.], |