helly Sat Apr 5 07:19:56 2003 EDT Modified files: (Branch: PHP_4_3) /php4 run-tests.php Log: MFH: Include ldd output Index: php4/run-tests.php diff -u php4/run-tests.php:1.119.2.21 php4/run-tests.php:1.119.2.22 --- php4/run-tests.php:1.119.2.21 Wed Apr 2 03:34:56 2003 +++ php4/run-tests.php Sat Apr 5 07:19:56 2003 @@ -373,7 +373,7 @@ $failed_tests_data .= "\n" . $sep . 'BUILD ENVIRONMENT' . $sep; $failed_tests_data .= "OS:\n". PHP_OS. "\n\n"; - $automake = $autoconf = $libtool = $compiler = 'N/A'; + $ldd = $automake = $autoconf = $libtool = $compiler = 'N/A'; if (substr(PHP_OS, 0, 3) != "WIN") { $automake = shell_exec('automake --version'); @@ -390,12 +390,14 @@ break; } } + $ldd = shell_exec("ldd $php"); } $failed_tests_data .= "Automake:\n$automake\n"; $failed_tests_data .= "Autoconf:\n$autoconf\n"; $failed_tests_data .= "Libtool:\n$libtool\n"; $failed_tests_data .= "Compiler:\n$compiler\n"; $failed_tests_data .= "Bison:\n". @shell_exec('bison --version'). "\n"; + $failed_tests_data .= "Libraries:\n$ldd\n"; $failed_tests_data .= "\n"; if (isset($user_email)) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php