Patch Fixed-bug-62460-php-binaries-installed-as-binary.dSY.patch for *Compile Issues Bug #62460
Patch version 2012-07-19 06:29 UTC
Return to Bug #62460 |
Download this patch
Patch Revisions:
Developer: reeze.xia@gmail.com
From 63c11fdba4bf51fb6123086d19bcc71d1237207b Mon Sep 17 00:00:00 2001
From: Reeze Xia <reeze.xia@gmail.com>
Date: Thu, 19 Jul 2012 00:27:34 +0800
Subject: [PATCH] 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.
Signed-off-by: Reeze Xia <reeze.xia@gmail.com>
---
configure.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.in b/configure.in
index fa6c557..d896583 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
--
1.7.9.3
|