From 941749f5eca8c1134d6c344cc166cee63fcb57ae Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Fri, 21 Nov 2008 14:17:33 +0000 Subject: [PATCH] - MFH: add build type (debug/release) and TS info to the summary --- win32/build/confutils.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/win32/build/confutils.js b/win32/build/confutils.js index d23d2b1adb..b782751d78 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -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 @@ function write_summary() 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); -- 2.50.1