diff options
author | Gwynne Raskind <gwynne@php.net> | 2009-11-30 08:18:44 +0000 |
---|---|---|
committer | Gwynne Raskind <gwynne@php.net> | 2009-11-30 08:18:44 +0000 |
commit | 477649cd3f0989d4f613a58ffb0d5cca96000cee (patch) | |
tree | 90a7dfe56c3a0e0b0f289bd291a7e71cabeb792c /configure.in | |
parent | f275cd08150afeef922e677cb6816caf0bde1f8a (diff) | |
download | php-git-477649cd3f0989d4f613a58ffb0d5cca96000cee.tar.gz |
re-committing: 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.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 788a3f0f9d..872ced0761 100644 --- a/configure.in +++ b/configure.in @@ -988,7 +988,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 ------------------------------------------------------------------------- @@ -1071,7 +1071,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) @@ -1083,7 +1083,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}' |