summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorGwynne Raskind <gwynne@php.net>2009-11-28 19:48:38 +0000
committerGwynne Raskind <gwynne@php.net>2009-11-28 19:48:38 +0000
commit21a6e1f96229b0168bc5169139a45b75e358925c (patch)
tree2b037e9b098bb9224b8e43e865a068040996bd22 /configure.in
parentd271615ba4053524e2401e820e7e67a4ee939d4b (diff)
downloadphp-git-21a6e1f96229b0168bc5169139a45b75e358925c.tar.gz
unsetting LIBS and LDFLAGS just makes it impossible to specify LDFLAGS from the environment. keeping them doesn't seem to cause any trouble
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 0dd8e23b81..7da3ef7e21 100644
--- a/configure.in
+++ b/configure.in
@@ -946,7 +946,7 @@ if test "$ac_cv_lib_crypt_crypt" = "yes"; then
EXTRA_LIBS="-lcrypt $EXTRA_LIBS -lcrypt"
fi
-unset LIBS LDFLAGS
+#unset LIBS LDFLAGS
dnl PEAR
dnl -------------------------------------------------------------------------
@@ -1029,7 +1029,7 @@ if test "$abs_srcdir" != "$abs_builddir"; then
fi
ZEND_EXTRA_LIBS="$LIBS"
-unset LIBS LDFLAGS
+#unset LIBS LDFLAGS
PHP_HELP_SEPARATOR([TSRM:])
PHP_CONFIGURE_PART(Configuring TSRM)
@@ -1041,7 +1041,7 @@ fi
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LDFLAGS"
EXTRA_LDFLAGS_PROGRAM="$EXTRA_LDFLAGS_PROGRAM $LDFLAGS"
EXTRA_LIBS="$EXTRA_LIBS $LIBS"
-unset LIBS LDFLAGS
+#unset LIBS LDFLAGS
test "$prefix" = "NONE" && prefix=/usr/local
test "$exec_prefix" = "NONE" && exec_prefix='${prefix}'