diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-08-15 20:13:47 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-08-15 20:13:47 +0000 |
| commit | 118a6a94e1b408b9ea5c758bd92fcb8fc70c64f1 (patch) | |
| tree | 1f0b2b9ad071c8fb4e9b0e3c1a52c7e82fe6789d | |
| parent | f3c1722b0cd160f068df640957a42f5bc7ff366a (diff) | |
| download | php-git-118a6a94e1b408b9ea5c758bd92fcb8fc70c64f1.tar.gz | |
MFH: fix #38467 (--enable-versioning causes make fail on OS X)
| -rw-r--r-- | NEWS | 1 | ||||
| -rw-r--r-- | configure.in | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -38,6 +38,7 @@ PHP NEWS - Fixed phpinfo() cutoff of variables at \0. (Ilia) - Fixed a bug in the filter extension that prevented magic_quotes_gpc from being applied when RAW filter is used. (Ilia) +- Fixed bug #38467 (--enable-versioning causes make fail on OS X). (Tony) - Fixed bug #38461 (setting private attribute with __set() produces segfault). (Tony) - Fixed bug #38451 (PDO_MYSQL doesn't compile on Solaris). (Tony) diff --git a/configure.in b/configure.in index f9df413865..438b5e4769 100644 --- a/configure.in +++ b/configure.in @@ -883,6 +883,13 @@ if test "$PHP_VERSIONING" = "yes"; then if test -n "$PHP_MODULES"; then AC_MSG_ERROR([--enable-versioning cannot be used with shared modules]) fi + + case $host_alias in + *darwin*) + AC_MSG_ERROR([--enable-versioning is not supported on your platform]) + ;; + esac + test -z "$PHP_SYM_FILE" && PHP_SYM_FILE="$abs_srcdir/sapi/$PHP_SAPI/php.sym" if test -f "$PHP_SYM_FILE"; then EXTRA_LDFLAGS="-export-symbols $PHP_SYM_FILE $EXTRA_LDFLAGS" |
