From 704a24c53dc82c8d7a432b06b37feedad34d25b7 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 15 Aug 2006 20:12:59 +0000 Subject: [PATCH] fix #38467 (--enable-versioning causes make fail on OS X) --- configure.in | 7 +++++++ 1 file changed, 7 insertions(+) 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" -- 2.50.1