sniper Mon Jun 13 04:44:48 2005 EDT
Modified files:
/php-src NEWS acinclude.m4
Log:
- Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle -pthread)
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1914&r2=1.1915&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1914 php-src/NEWS:1.1915
--- php-src/NEWS:1.1914 Mon Jun 13 03:55:01 2005
+++ php-src/NEWS Mon Jun 13 04:44:47 2005
@@ -1,14 +1,14 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2005, PHP 5.1
-- Fixed bug #33312 (ReflectionParameter methods do not work correctly).
- (Dmitry)
-
-11 Jun 2005, PHP 5.1 Beta 2
+?? Jun 2005, PHP 5.1 Beta 2
- Fixed PDO shutdown problem (possible inifite loop running rollback on
shutdown). (Wez)
- Fixed PECL bug #3714 (beginTransaction doesn't work if you're in
auto-commit mode). (Wez)
+- Fixed bug #33312 (ReflectionParameter methods do not work correctly).
+ (Dmitry)
+- Fixed bug #31256 (PHP_EVAL_LIBLINE configure macro does not handle -pthread).
+ (Jani)
10 Jun 2005, PHP 5.1 Beta 1
- Upgraded PCRE library to version 5.0. (Andrei)
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.315&r2=1.316&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.315 php-src/acinclude.m4:1.316
--- php-src/acinclude.m4:1.315 Tue Jun 7 12:47:32 2005
+++ php-src/acinclude.m4 Mon Jun 13 04:44:47 2005
@@ -1,5 +1,5 @@
dnl
-dnl $Id: acinclude.m4,v 1.315 2005/06/07 16:47:32 sniper Exp $
+dnl $Id: acinclude.m4,v 1.316 2005/06/13 08:44:47 sniper Exp $
dnl
dnl This file contains local autoconf functions.
dnl
@@ -390,6 +390,13 @@
AC_DEFUN([PHP_EVAL_LIBLINE],[
for ac_i in $1; do
case $ac_i in
+ -pthread[)]
+ if test "$ext_shared" = "yes"; then
+ $2="[$]$2 -pthread"
+ else
+ PHP_RUN_ONCE(EXTRA_LDFLAGS, [$ac_i], [EXTRA_LDFLAGS="$EXTRA_LDFLAGS
$ac_i"])
+ fi
+ ;;
-l*[)]
ac_ii=`echo $ac_i|cut -c 3-`
PHP_ADD_LIBRARY($ac_ii,1,$2)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php