From 27defce2bc209d227566edda78682c7b7fe0030d Mon Sep 17 00:00:00 2001 From: Nikhil Vimal Date: Mon, 16 Feb 2015 23:19:47 -0600 Subject: [PATCH] More docs for /win32/build/confutils.js Just adding a few more docs --- win32/build/confutils.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/win32/build/confutils.js b/win32/build/confutils.js index c1f71e17a7..54846f72ca 100644 --- a/win32/build/confutils.js +++ b/win32/build/confutils.js @@ -1935,6 +1935,7 @@ function generate_config_h() outfile.Close(); } +/* Generate phpize */ function generate_phpize() { STDOUT.WriteLine("Generating phpize"); @@ -2268,6 +2269,7 @@ function _inner_glob(base, p, parts) return items; } +/* Install Headers */ function PHP_INSTALL_HEADERS(dir, headers_list) { headers_list = headers_list.split(new RegExp("\\s+")); @@ -2457,6 +2459,7 @@ function toolset_get_compiler() ERROR("Unsupported toolset"); } +/* Get compiler version if the toolset is supported */ function toolset_get_compiler_version() { var version; @@ -2492,6 +2495,7 @@ function toolset_get_compiler_version() ERROR("Failed to parse compiler version or unsupported toolset"); } +/* Get compiler name if the toolset is supported */ function toolset_get_compiler_name() { var version; @@ -2818,4 +2822,3 @@ function trim(s) { return s.replace(/^\s+/, "").replace(/\s+$/, ""); } - -- 2.50.1