summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <mozo@mozo.jp>2012-04-03 01:32:42 +0900
committerMoriyoshi Koizumi <mozo@mozo.jp>2012-04-03 01:51:23 +0900
commita6c95c8a00e9286ccc662e9682f9254e153d6833 (patch)
tree9b3ec2c04056c521b76bb068528fc30b1032f882 /acinclude.m4
parent8684fb7facd8f5c1589996c1ebfd782f77c245ff (diff)
downloadphp-git-a6c95c8a00e9286ccc662e9682f9254e153d6833.tar.gz
Reset LIBS temporarily to make sure PHP_CHECK_FUNC will look into libc.
See Gentoo bug #364139. https://bugs.gentoo.org/show_bug.cgi?id=364139 Reported by Naohiro Aota.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m46
1 files changed, 6 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 5515b3f03d..ddf7285783 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2438,7 +2438,12 @@ AC_DEFUN([PHP_SETUP_ICONV], [
dnl
dnl Check libc first if no path is provided in --with-iconv
dnl
+
if test "$PHP_ICONV" = "yes"; then
+ dnl Reset LIBS temporarily as it may have already been included
+ dnl -liconv in.
+ LIBS_save="$LIBS"
+ LIBS=
AC_CHECK_FUNC(iconv, [
found_iconv=yes
],[
@@ -2448,6 +2453,7 @@ AC_DEFUN([PHP_SETUP_ICONV], [
found_iconv=yes
])
])
+ LIBS="$LIBS_save"
fi
dnl