From: Antony Dovgal Date: Tue, 15 Aug 2006 20:12:59 +0000 (+0000) Subject: fix #38467 (--enable-versioning causes make fail on OS X) X-Git-Tag: RELEASE_1_0_0RC1~1943 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=704a24c53dc82c8d7a432b06b37feedad34d25b7;p=php fix #38467 (--enable-versioning causes make fail on OS X) --- diff --git a/configure.in b/configure.in index c5270bbedb..d94a4da823 100644 --- a/configure.in +++ b/configure.in @@ -894,6 +894,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"