Lines Matching refs:C

22 var C = FSO.CreateTextFile("configure.js", true);  variable
208 C.WriteLine("/* This file automatically generated from script/confutils.js */");
209 C.WriteLine("var MODE_PHPIZE = true;");
210 C.WriteLine("var PHP_DIR = " + '"' + PHP_DIR.replace(new RegExp('(["\\\\])', "g"), '\\$1') + '"');
211 C.WriteLine("var PHP_PREFIX = " + '"' + PHP_PREFIX.replace(new RegExp('(["\\\\])', "g"), '\\$1') + …
214 C.WriteLine("var PHP_ANALYZER = 'disabled';");
215 C.WriteLine("var PHP_PGO = 'no';");
216 C.WriteLine("var PHP_PGI = 'no';");
218 C.WriteLine("var PHP_VERSION=" + PHP_VERSION);
219 C.WriteLine("var PHP_MINOR_VERSION=" + PHP_MINOR_VERSION);
220 C.WriteLine("var PHP_RELEASE_VERSION=" + PHP_RELEASE_VERSION);
221 C.WriteLine("var PHP_EXTRA_VERSION=\"" + PHP_EXTRA_VERSION + "\"");
222 C.WriteLine("var PHP_VERSION_STRING=\"" + PHP_VERSION_STRING + "\"");
224 C.Write(file_get_contents(PHP_DIR + "//script//ext_deps.js"));
226 C.Write(file_get_contents(PHP_DIR + "//script//ext_pickle.js"));
229 C.Write(file_get_contents(PHP_DIR + "/script/confutils.js"));
230 C.Write(file_get_contents(PHP_DIR + "/script/config.phpize.js"));
235 C.WriteLine("ARG_ENABLE('debug', 'Compile with debugging symbols', PHP_DEBUG);");
247 C.WriteLine("try {");
248 C.WriteLine(item);
249 C.WriteLine("} catch (e) {");
250 C.WriteLine('\tSTDOUT.WriteLine("problem: " + e);');
251 C.WriteLine("}");
254 C.WriteBlankLines(1);
255 C.WriteLine("conf_process_args();");
256 C.WriteBlankLines(1);
260 C.Write(modules);
263 C.WriteBlankLines(1);
264 C.Write(file_get_contents(PHP_DIR + "\\script\\configure.tail"));