From: Kalle Sommer Nielsen Date: Fri, 29 May 2009 07:41:46 +0000 (+0000) Subject: If we don't have a comment (for the 3rd argument in ARG_[ENABLE|WITH], then don't... X-Git-Tag: php-5.4.0alpha1~191^2~3465 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ec0e93ae8a09d5b9b751f0f1eb96da916e3c7ab;p=php If we don't have a comment (for the 3rd argument in ARG_[ENABLE|WITH], then don't print a comment say "undefined" --- diff --git a/win32/build/confutils.js b/win32/build/confutils.js index 8ea8e6db59..79743cba92 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -// $Id: confutils.js,v 1.82 2008-12-25 00:03:39 pajoye Exp $ +// $Id: confutils.js,v 1.83 2009-05-29 07:41:46 kalle Exp $ var STDOUT = WScript.StdOut; var STDERR = WScript.StdErr; @@ -1563,9 +1563,13 @@ function generate_config_h() for (i in keys) { item = configure_hdr.Item(keys[i]); outfile.WriteBlankLines(1); - outfile.WriteLine("/* " + item[1] + " */"); pieces = item[0]; + if (item[1] != undefined) { + outfile.WriteLine("/* " + item[1] + " */"); + } + + if (typeof(pieces) == "string" && pieces.charCodeAt(0) == 34) { /* quoted string have a maximal length of 2k under vc. * solution is to crack them and let the compiler concat