mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
- Fixed bug #33326 (Cannot build extensions with phpize on Macosx).
This commit is contained in:
parent
a0d479994f
commit
e46cd60d89
2 changed files with 1 additions and 4 deletions
1
NEWS
1
NEWS
|
@ -48,6 +48,7 @@ PHP NEWS
|
||||||
- Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
|
- Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
|
||||||
- Fixed bug #33558 (warning with nested calls to functions returning by
|
- Fixed bug #33558 (warning with nested calls to functions returning by
|
||||||
reference). (Dmitry)
|
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 #32139 (SOAP client does not auto-handle base64 encoding). (Ilia)
|
||||||
- Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk)
|
- Fixed bug #32010 (Memory leak in mssql_fetch_batch). (fmk)
|
||||||
- Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani)
|
- Fixed bug #29334 (win32 mail() provides incorrect Date: header). (Jani)
|
||||||
|
|
|
@ -854,10 +854,6 @@ AC_DEFUN([PHP_SHARED_MODULE],[
|
||||||
suffix=so
|
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'
|
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*[)]
|
*netware*[)]
|
||||||
suffix=nlm
|
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)'
|
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)'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue