tony2001 Tue Aug 15 20:13:47 2006 UTC
Modified files: (Branch: PHP_5_2)
/php-src NEWS configure.in
Log:
MFH: fix #38467 (--enable-versioning causes make fail on OS X)
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.204&r2=1.2027.2.547.2.205&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.204 php-src/NEWS:1.2027.2.547.2.205
--- php-src/NEWS:1.2027.2.547.2.204 Tue Aug 15 13:19:58 2006
+++ php-src/NEWS Tue Aug 15 20:13:47 2006
@@ -38,6 +38,7 @@
- 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)
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.579.2.52.2.9&r2=1.579.2.52.2.10&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.579.2.52.2.9 php-src/configure.in:1.579.2.52.2.10
--- php-src/configure.in:1.579.2.52.2.9 Tue Aug 8 10:54:24 2006
+++ php-src/configure.in Tue Aug 15 20:13:47 2006
@@ -1,4 +1,4 @@
- ## $Id: configure.in,v 1.579.2.52.2.9 2006/08/08 10:54:24 tony2001 Exp $ -*-
autoconf -*-
+ ## $Id: configure.in,v 1.579.2.52.2.10 2006/08/15 20:13:47 tony2001 Exp $ -*-
autoconf -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -883,6 +883,13 @@
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"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php