From: Sascha Schumann Date: Fri, 17 Dec 1999 14:36:53 +0000 (+0000) Subject: Remove passthru, it is not needed anymore X-Git-Tag: PRE_LIBZEND_TO_ZEND~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13b2c79f6a5aec4bca294532dedf04a605c9e389;p=php Remove passthru, it is not needed anymore --- diff --git a/configure.in b/configure.in index 7353acdb4f..1ebc0050f4 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,6 @@ if test -n "$with_apache" && test -n "$with_apxs"; then fi cwd=`pwd` -for i in $@; do passthru="$passthru \"$i\""; done CONFIGURE_COMMAND=$0 for arg in "$@"; do @@ -643,7 +642,7 @@ if test "$PHP_VERSIONING" = "yes"; then fi if test "$PHP_LOW_MEMORY" = "yes"; then - passthru="$passthru --disable-inline" + enable_inline=no fi divert(4) @@ -653,18 +652,15 @@ enable_static=yes case "$php_build_target" in program) - enable_shared=no + enable_shared=no PHP_PROGRAM=php - passthru="$passthru --disable-shared" ;; shared) - enable_static=no - passthru="$passthru --disable-static" + enable_static=no EXTRA_LDFLAGS="$EXTRA_LDFLAGS -avoid-version" ;; static) - enable_shared=no - passthru="$passthru --disable-shared" + enable_shared=no ;; esac