diff options
author | Sascha Schumann <sas@php.net> | 1999-12-24 15:47:44 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-24 15:47:44 +0000 |
commit | 0ef049d70726a5c29ab6e0a7d0fd7ac1a7e3c22f (patch) | |
tree | e2c2f721f637fddc7991addc2e4eb6ec3c30baf3 | |
parent | 69f8907a29e8afa4b195bd6ba7ecff095bd00c76 (diff) | |
download | php-git-0ef049d70726a5c29ab6e0a7d0fd7ac1a7e3c22f.tar.gz |
Remove --enable-low-memory, and preserve LIBS from TSRM
-rw-r--r-- | configure.in | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/configure.in b/configure.in index 5e4ef54cf2..261959af3e 100644 --- a/configure.in +++ b/configure.in @@ -592,15 +592,6 @@ AC_ARG_ENABLE(dmalloc, ]) AC_MSG_RESULT($DMALLOC_RESULT) -AC_MSG_CHECKING(whether to try to stay below resource limits) -AC_ARG_ENABLE(low-memory, -[ --enable-low-memory Try to stay below resource limits],[ - PHP_LOW_MEMORY=$enableval -],[ - PHP_LOW_MEMORY=no -]) -AC_MSG_RESULT($PHP_LOW_MEMORY) - AC_ARG_ENABLE(pear, [ --disable-pear Do not install PEAR],[ PHP_PEAR=$enableval @@ -653,10 +644,6 @@ if test "$PHP_VERSIONING" = "yes"; then fi fi -if test "$PHP_LOW_MEMORY" = "yes"; then - enable_inline=no -fi - divert(4) enable_shared=yes @@ -732,7 +719,9 @@ if test "$PHP_THREAD_SAFETY" = "yes"; then TSRM_BASIC_CHECKS TSRM_OTHER_CHECKS EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LDFLAGS" + EXTRA_LIBS="$EXTRA_LIBS $LIBS" LDFLAGS="" + LIBS="" fi |