summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReeze Xia <reeze.xia@gmail.com>2012-07-19 00:27:34 +0800
committerStanislav Malyshev <stas@php.net>2012-08-05 20:22:07 -0700
commit07ee764e5709dc8d9f26382d8e7438696f5bb834 (patch)
treef76650a8617ad234b52689abf3d1657216193441
parent228c2886869e7f50a272f163cb3b765a65fd40eb (diff)
downloadphp-git-07ee764e5709dc8d9f26382d8e7438696f5bb834.tar.gz
Fixed bug #62460 (php binaries installed as binary.dSYM)
See http://marc.info/?l=php-cvs&m=125961714419896 Mac OS X 10.7&10.8 affected too.
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index fa6c55769e..d896583313 100644
--- a/configure.in
+++ b/configure.in
@@ -1335,10 +1335,10 @@ PHP_CONFIGURE_PART(Configuring libtool)
LDFLAGS="$LDFLAGS $PHP_AIX_LDFLAGS"
-dnl Autoconf 2.13's libtool checks go slightly nuts on Mac OS X 10.5 and 10.6.
+dnl Autoconf 2.13's libtool checks go slightly nuts on Mac OS X 10.5, 10.6, 10.7 and 10.8.
dnl This hack works around it. Ugly.
case $host_alias in
-*darwin9*|*darwin10*)
+*darwin9*|*darwin10*|*darwin11*|*darwin12*)
ac_cv_exeext=
;;
esac