iliaa Sun Nov 9 23:33:58 2003 EDT Modified files: (Branch: PHP_4_3) /php-src NEWS /php-src/scripts phpize.in Log: Fixed bug #26168 (shtool availability check in phpize). Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.463 php-src/NEWS:1.1247.2.464 --- php-src/NEWS:1.1247.2.463 Sun Nov 9 23:12:49 2003 +++ php-src/NEWS Sun Nov 9 23:33:55 2003 @@ -4,6 +4,8 @@ - Fixed header handler in NSAPI SAPI module (header->replace was ignored, send_default_content_type now sends value from php.ini). (Uwe Schindler) - Fixed bug #26176 (Fixed handling of numeric keys in INI files). (Ilia) +- Fixed bug #26168 (shtool availability check in phpize). + (robbat2 at gentoo dot org, Ilia) - Fixed bug #26148 (Print the notice before modifying variable on type mismatch). (morten-bugs dot php dot net at afdelingp dot dk, Ilia) - Fixed bug #26128 (mbstring prints out wrong information on phpinfo()). Index: php-src/scripts/phpize.in diff -u php-src/scripts/phpize.in:1.1.2.7 php-src/scripts/phpize.in:1.1.2.8 --- php-src/scripts/phpize.in:1.1.2.7 Wed Aug 27 13:57:32 2003 +++ php-src/scripts/phpize.in Sun Nov 9 23:33:57 2003 @@ -57,6 +57,13 @@ aclocal || exit 1 autoconf || exit 1 autoheader || exit 1 +test -x $builddir/build/shtool || chmod +x $builddir/build/shtool +if test ! -x $builddir/build/shtool; then + echo "shtool at '$builddir/build/shtool' not executable. " + echo "Make sure that the file exists and is executable and then rerun this script. " + echo + exit 1 +fi libtoolize=`$builddir/build/shtool path glibtoolize libtoolize` $libtoolize -f -c || exit 1
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php