tony2001 Thu Mar 1 11:23:54 2007 UTC Modified files: (Branch: PHP_5_2) /php-src NEWS /php-src/ext/posix config.m4 Log: MFH: fix #40678 (Cross compilation fails) http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.564&r2=1.2027.2.547.2.565&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.564 php-src/NEWS:1.2027.2.547.2.565 --- php-src/NEWS:1.2027.2.547.2.564 Thu Mar 1 00:01:32 2007 +++ php-src/NEWS Thu Mar 1 11:23:54 2007 @@ -9,6 +9,7 @@ - Added --ri switch to CLI which allows to check extension information. (Marcus) - Added tidyNode::getParent() method (John, Nuno) - Fixed zend_llist_remove_tail (Michael Wallner, Dmitry) +- Fixed bug #40678 (Cross compilation fails). (Tony) - Fixed bug #40621 (Crash when constructor called inappropriately). (Tony) - Fixed bug #40609 (Segfaults when using more than one SoapVar in a request). (Rob, Dmitry) http://cvs.php.net/viewvc.cgi/php-src/ext/posix/config.m4?r1=1.12.4.4&r2=1.12.4.5&diff_format=u Index: php-src/ext/posix/config.m4 diff -u php-src/ext/posix/config.m4:1.12.4.4 php-src/ext/posix/config.m4:1.12.4.5 --- php-src/ext/posix/config.m4:1.12.4.4 Fri Jan 5 21:31:56 2007 +++ php-src/ext/posix/config.m4 Thu Mar 1 11:23:54 2007 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.12.4.4 2007/01/05 21:31:56 pollita Exp $ +dnl $Id: config.m4,v 1.12.4.5 2007/03/01 11:23:54 tony2001 Exp $ dnl PHP_ARG_ENABLE(posix,whether to enable POSIX-like functions, @@ -28,5 +28,7 @@ AC_DEFINE(HAVE_TTYNAME_R, 1, [Whether you have a working ttyname_r]) ],[ AC_MSG_RESULT([no, posix_ttyname() will be thread-unsafe]) + ], [ + AC_MSG_RESULT([no, cannot detect working ttyname_r() when cross compiling. posix_ttyname() will be thread-unsafe]) ]) fi
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php