pajoye Fri Nov 21 14:03:23 2008 UTC
Modified files:
/php-src/win32/build confutils.js
Log:
- add build type (debug/release) and TS info to the summary
http://cvs.php.net/viewvc.cgi/php-src/win32/build/confutils.js?r1=1.80&r2=1.81&diff_format=u
Index: php-src/win32/build/confutils.js
diff -u php-src/win32/build/confutils.js:1.80
php-src/win32/build/confutils.js:1.81
--- php-src/win32/build/confutils.js:1.80 Thu Sep 25 14:59:10 2008
+++ php-src/win32/build/confutils.js Fri Nov 21 14:03:23 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-// $Id: confutils.js,v 1.80 2008/09/25 14:59:10 pajoye Exp $
+// $Id: confutils.js,v 1.81 2008/11/21 14:03:23 pajoye Exp $
var STDOUT = WScript.StdOut;
var STDERR = WScript.StdErr;
@@ -1476,8 +1476,10 @@
output_as_table(["Sapi Name"], sapi_enabled);
STDOUT.WriteBlankLines(2);
- ar[0] = ['Compiler', VC_VERSIONS[VCVERS]];
- ar[1] = ['Architecture', X64 ? 'x64' : 'x86'];
+ ar[0] = ['Build type', PHP_DEBUG == "yes" ? "Debug" : "Release"];
+ ar[1] = ['Thread Safety', PHP_ZTS == "yes" ? "Yes" : "No"];
+ ar[2] = ['Compiler', VC_VERSIONS[VCVERS]];
+ ar[3] = ['Architecture', X64 ? 'x64' : 'x86'];
output_as_table(["",""], ar);
STDOUT.WriteBlankLines(2);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php