pajoye          Fri Nov 21 14:17:34 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/win32/build        confutils.js 
  Log:
  - MFH: 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.60.2.1.2.8.2.30&r2=1.60.2.1.2.8.2.31&diff_format=u
Index: php-src/win32/build/confutils.js
diff -u php-src/win32/build/confutils.js:1.60.2.1.2.8.2.30 
php-src/win32/build/confutils.js:1.60.2.1.2.8.2.31
--- php-src/win32/build/confutils.js:1.60.2.1.2.8.2.30  Thu Sep 25 15:00:59 2008
+++ php-src/win32/build/confutils.js    Fri Nov 21 14:17:33 2008
@@ -17,7 +17,7 @@
   +----------------------------------------------------------------------+
 */
 
-// $Id: confutils.js,v 1.60.2.1.2.8.2.30 2008/09/25 15:00:59 pajoye Exp $
+// $Id: confutils.js,v 1.60.2.1.2.8.2.31 2008/11/21 14:17:33 pajoye Exp $
 
 var STDOUT = WScript.StdOut;
 var STDERR = WScript.StdErr;
@@ -1481,8 +1481,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

Reply via email to