summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-08-12 15:15:17 +0000
committerfoobar <sniper@php.net>2005-08-12 15:15:17 +0000
commite46cd60d89336d551724e4b099cad527c738dfc5 (patch)
tree87c2428abe6e4497d2bf1f91638c27598c6f6d8a
parenta0d479994f22877158c9a1d66af10a95d0ef7367 (diff)
downloadphp-git-e46cd60d89336d551724e4b099cad527c738dfc5.tar.gz
- Fixed bug #33326 (Cannot build extensions with phpize on Macosx).
-rw-r--r--NEWS1
-rw-r--r--acinclude.m44
2 files changed, 1 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 57dd0950f5..2dd06bac65 100644
--- a/NEWS
+++ b/NEWS
@@ -48,6 +48,7 @@ PHP NEWS
- Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
- Fixed bug #33558 (warning with nested calls to functions returning by
reference). (Dmitry)
+- Fixed bug #33326 (Cannot build extensions with phpize on Macosx). (Jani)
- Fixed bug #32139 (SOAP client does not auto-handle base64 encoding). (Ilia)
- Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk)
- Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani)
diff --git a/acinclude.m4 b/acinclude.m4
index 2ea9b62bbe..250b52b5ed 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -854,10 +854,6 @@ AC_DEFUN([PHP_SHARED_MODULE],[
suffix=so
link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -Wl,-G -o '$3'/$1.la -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD) && mv -f '$3'/.libs/$1.so '$3'/$1.so'
;;
- *darwin*[)]
- suffix=so
- link_cmd='ifelse($4,,[$(CC)],[$(CXX)]) -dynamic -flat_namespace -bundle -undefined suppress $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD)'
- ;;
*netware*[)]
suffix=nlm
link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) $(LDFLAGS) -o [$]@ -shared -export-dynamic -avoid-version -prefer-pic -module -rpath $(phplibdir) $(EXTRA_LDFLAGS) $($2) $(translit($1,a-z_-,A-Z__)_SHARED_LIBADD)'