msopacua Thu Dec 19 19:25:56 2002 EDT Modified files: (Branch: PHP_4_3) /php4 run-tests.php Log: Fix libtool detection Index: php4/run-tests.php diff -u php4/run-tests.php:1.119.2.14 php4/run-tests.php:1.119.2.15 --- php4/run-tests.php:1.119.2.14 Tue Dec 17 14:08:01 2002 +++ php4/run-tests.php Thu Dec 19 19:25:56 2002 @@ -371,7 +371,8 @@ if (substr(PHP_OS, 0, 3) != "WIN") { $automake = shell_exec('automake --version'); $autoconf = shell_exec('autoconf --version'); - $libtool = shell_exec('libtool --version'); + /* Always use the generated libtool - Mac OSX uses 'glibtool' +*/ + $libtool = shell_exec('./libtool --version'); /* Try the most common flags for 'version' */ $flags = array('-v', '-V', '--version'); $cc_status=0;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php