File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ PHP NEWS
38
38
- Fixed phpinfo() cutoff of variables at \0. (Ilia)
39
39
- Fixed a bug in the filter extension that prevented magic_quotes_gpc from
40
40
being applied when RAW filter is used. (Ilia)
41
+ - Fixed bug #38467 (--enable-versioning causes make fail on OS X). (Tony)
41
42
- Fixed bug #38461 (setting private attribute with __set() produces
42
43
segfault). (Tony)
43
44
- Fixed bug #38451 (PDO_MYSQL doesn't compile on Solaris). (Tony)
Original file line number Diff line number Diff line change @@ -883,6 +883,13 @@ if test "$PHP_VERSIONING" = "yes"; then
883
883
if test -n "$PHP_MODULES"; then
884
884
AC_MSG_ERROR ( [ --enable-versioning cannot be used with shared modules] )
885
885
fi
886
+
887
+ case $host_alias in
888
+ *darwin*)
889
+ AC_MSG_ERROR ( [ --enable-versioning is not supported on your platform] )
890
+ ;;
891
+ esac
892
+
886
893
test -z "$PHP_SYM_FILE" && PHP_SYM_FILE="$abs_srcdir/sapi/$PHP_SAPI/php.sym"
887
894
if test -f "$PHP_SYM_FILE"; then
888
895
EXTRA_LDFLAGS="-export-symbols $PHP_SYM_FILE $EXTRA_LDFLAGS"
You can’t perform that action at this time.
0 commit comments