• Home
  • Raw
  • Download

Lines Matching refs:WriteLine

181 	vf.WriteLine("# " + versionFile);
182 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
188 vf.WriteLine("LIBXML_MAJOR_VERSION=" + m[1]);
191 vf.WriteLine("LIBXML_MINOR_VERSION=" + m[1]);
194 vf.WriteLine("LIBXML_MICRO_VERSION=" + m[1]);
197 vf.WriteLine(s);
202 vf.WriteLine("XML_SRCDIR=" + srcDirXml);
203 vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils);
204 vf.WriteLine("WITH_THREADS=" + withThreads);
205 vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0"));
206 vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0"));
207 vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0"));
208 vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0"));
209 vf.WriteLine("WITH_XPATH=" + (withXpath? "1" : "0"));
210 vf.WriteLine("WITH_XPTR=" + (withXptr? "1" : "0"));
211 vf.WriteLine("WITH_XINCLUDE=" + (withXinclude? "1" : "0"));
212 vf.WriteLine("WITH_ICONV=" + (withIconv? "1" : "0"));
213 vf.WriteLine("WITH_ICU=" + (withIcu? "1" : "0"));
214 vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0"));
215 vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0"));
216 vf.WriteLine("WITH_LZMA=" + (withLzma? "1" : "0"));
217 vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0"));
218 vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0"));
219 vf.WriteLine("WITH_SCHEMATRON=" + (withSchematron? "1" : "0"));
220 vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0"));
221 vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0"));
222 vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0"));
223 vf.WriteLine("WITH_READER=" + (withReader? "1" : "0"));
224 vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0"));
225 vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0"));
226 vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0"));
227 vf.WriteLine("WITH_PUSH=" + (withPush? "1" : "0"));
228 vf.WriteLine("WITH_VALID=" + (withValid? "1" : "0"));
229 vf.WriteLine("WITH_SAX1=" + (withSax1? "1" : "0"));
230 vf.WriteLine("WITH_LEGACY=" + (withLegacy? "1" : "0"));
231 vf.WriteLine("WITH_OUTPUT=" + (withOutput? "1" : "0"));
232 vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0"));
233 vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0"));
234 vf.WriteLine("STATIC=" + (buildStatic? "1" : "0"));
235 vf.WriteLine("PREFIX=" + buildPrefix);
236 vf.WriteLine("BINPREFIX=" + buildBinPrefix);
237 vf.WriteLine("INCPREFIX=" + buildIncPrefix);
238 vf.WriteLine("LIBPREFIX=" + buildLibPrefix);
239 vf.WriteLine("SOPREFIX=" + buildSoPrefix);
241 vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude);
242 vf.WriteLine("LIB=$(LIB);" + buildLib);
243 vf.WriteLine("CRUNTIME=" + cruntime);
244 vf.WriteLine("VCMANIFEST=" + (vcmanifest? "1" : "0"));
246 vf.WriteLine("INCLUDE+= -I" + buildInclude);
247 vf.WriteLine("LIB+= -L" + buildLib);
249 vf.WriteLine("INCLUDE=" + buildInclude);
250 vf.WriteLine("LIB=" + buildLib);
251 vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0"));
256 vf.WriteLine("/*");
257 vf.WriteLine(" " + versionFile);
258 vf.WriteLine(" This file is generated automatically by " + WScript.ScriptName + ".");
259 vf.WriteLine("*/");
261 vf.WriteLine("#define LIBXML_MAJOR_VERSION " + verMajor);
262 vf.WriteLine("#define LIBXML_MINOR_VERSION " + verMinor);
263 vf.WriteLine("#define LIBXML_MICRO_VERSION " + verMicro);
264 …vf.WriteLine("#define LIBXML_DOTTED_VERSION " + "\"" + verMajor + "." + verMinor + "." + verMicro …
280 of.WriteLine(s.replace(/\@VERSION\@/,
283 of.WriteLine(s.replace(/\@LIBXML_VERSION_NUMBER\@/,
286 of.WriteLine(s.replace(/\@LIBXML_VERSION_EXTRA\@/, verCvs));
288 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
290 of.WriteLine(s.replace(/\@WITH_THREAD_ALLOC\@/, "0"));
292 of.WriteLine(s.replace(/\@WITH_HTTP\@/, withHttp? "1" : "0"));
294 of.WriteLine(s.replace(/\@WITH_HTML\@/, withHtml? "1" : "0"));
296 of.WriteLine(s.replace(/\@WITH_C14N\@/, withC14n? "1" : "0"));
298 of.WriteLine(s.replace(/\@WITH_CATALOG\@/, withCatalog? "1" : "0"));
300 of.WriteLine(s.replace(/\@WITH_XPATH\@/, withXpath? "1" : "0"));
302 of.WriteLine(s.replace(/\@WITH_XPTR\@/, withXptr? "1" : "0"));
304 of.WriteLine(s.replace(/\@WITH_XINCLUDE\@/, withXinclude? "1" : "0"));
306 of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0"));
308 of.WriteLine(s.replace(/\@WITH_ICU\@/, withIcu? "1" : "0"));
310 of.WriteLine(s.replace(/\@WITH_ISO8859X\@/, withIso8859x? "1" : "0"));
312 of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0"));
314 of.WriteLine(s.replace(/\@WITH_LZMA\@/, withLzma? "1" : "0"));
316 of.WriteLine(s.replace(/\@WITH_DEBUG\@/, withDebug? "1" : "0"));
318 of.WriteLine(s.replace(/\@WITH_SCHEMAS\@/, withSchemas? "1" : "0"));
320 of.WriteLine(s.replace(/\@WITH_SCHEMATRON\@/, withSchematron? "1" : "0"));
322 of.WriteLine(s.replace(/\@WITH_REGEXPS\@/, withRegExps? "1" : "0"));
324 of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0"));
326 of.WriteLine(s.replace(/\@MODULE_EXTENSION\@/, ".dll"));
328 of.WriteLine(s.replace(/\@WITH_TREE\@/, withTree? "1" : "0"));
330 of.WriteLine(s.replace(/\@WITH_READER\@/, withReader? "1" : "0"));
332 of.WriteLine(s.replace(/\@WITH_WRITER\@/, withWriter? "1" : "0"));
334 of.WriteLine(s.replace(/\@WITH_WALKER\@/, withWalker? "1" : "0"));
336 of.WriteLine(s.replace(/\@WITH_PATTERN\@/, withPattern? "1" : "0"));
338 of.WriteLine(s.replace(/\@WITH_PUSH\@/, withPush? "1" : "0"));
340 of.WriteLine(s.replace(/\@WITH_VALID\@/, withValid? "1" : "0"));
342 of.WriteLine(s.replace(/\@WITH_SAX1\@/, withSax1? "1" : "0"));
344 of.WriteLine(s.replace(/\@WITH_LEGACY\@/, withLegacy? "1" : "0"));
346 of.WriteLine(s.replace(/\@WITH_OUTPUT\@/, withOutput? "1" : "0"));
348 of.WriteLine(ln);
366 of.WriteLine(s.replace(/\@LIBXML_VERSION\@/,
369 of.WriteLine(s.replace(/\@prefix\@/, buildPrefix));
371 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
373 of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0"));
375 of.WriteLine(s.replace(/\@WITH_LZMA\@/, withLzma? "1" : "0"));
377 of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0"));
379 of.WriteLine(s.replace(/\@WITH_ICU\@/, withIcu? "1" : "0"));
381 of.WriteLine(ln);
395 f.WriteLine(" " + bname + " " + ver);
396 f.WriteLine(" --------------");
398 …f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA3…
399 f.WriteLine("platform.");
401 f.WriteLine(" The files in this package do not require any special installation");
402 f.WriteLine("steps. Extract the contents of the archive wherever you wish and");
403 f.WriteLine("make sure that your tools which use " + bname + " can find it.");
405 f.WriteLine(" For example, if you want to run the supplied utilities from the command");
406 f.WriteLine("line, you can, if you wish, add the 'bin' subdirectory to the PATH");
407 f.WriteLine("environment variable.");
408 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
409 f.WriteLine("likely know how to use the contents of this package. If you don't, please");
410 f.WriteLine("refer to your compiler's documentation.");
412 f.WriteLine(" If there is something you cannot keep for yourself, such as a problem,");
413 f.WriteLine("a cheer of joy, a comment or a suggestion, feel free to contact me using");
414 f.WriteLine("the address below.");
416 f.WriteLine(" Igor Zlatkovic (igor@zlatkovic.com)");