Home | History | Annotate | Download | only in win32

Lines Matching refs:WriteLine

205 	vf.WriteLine("# " + versionFile);
206 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
212 vf.WriteLine(s);
215 vf.WriteLine(s);
218 vf.WriteLine(s);
221 vf.WriteLine(s);
226 vf.WriteLine("XML_SRCDIR=" + srcDirXml);
227 vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils);
228 vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0"));
229 vf.WriteLine("WITH_THREADS=" + withThreads);
230 vf.WriteLine("WITH_FTP=" + (withFtp? "1" : "0"));
231 vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0"));
232 vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0"));
233 vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0"));
234 vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0"));
235 vf.WriteLine("WITH_DOCB=" + (withDocb? "1" : "0"));
236 vf.WriteLine("WITH_XPATH=" + (withXpath? "1" : "0"));
237 vf.WriteLine("WITH_XPTR=" + (withXptr? "1" : "0"));
238 vf.WriteLine("WITH_XINCLUDE=" + (withXinclude? "1" : "0"));
239 vf.WriteLine("WITH_ICONV=" + (withIconv? "1" : "0"));
240 vf.WriteLine("WITH_ICU=" + (withIcu? "1" : "0"));
241 vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0"));
242 vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0"));
243 vf.WriteLine("WITH_LZMA=" + (withLzma? "1" : "0"));
244 vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0"));
245 vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0"));
246 vf.WriteLine("WITH_RUN_DEBUG=" + (withRunDebug? "1" : "0"));
247 vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0"));
248 vf.WriteLine("WITH_SCHEMATRON=" + (withSchematron? "1" : "0"));
249 vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0"));
250 vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0"));
251 vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0"));
252 vf.WriteLine("WITH_READER=" + (withReader? "1" : "0"));
253 vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0"));
254 vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0"));
255 vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0"));
256 vf.WriteLine("WITH_PUSH=" + (withPush? "1" : "0"));
257 vf.WriteLine("WITH_VALID=" + (withValid? "1" : "0"));
258 vf.WriteLine("WITH_SAX1=" + (withSax1? "1" : "0"));
259 vf.WriteLine("WITH_LEGACY=" + (withLegacy? "1" : "0"));
260 vf.WriteLine("WITH_OUTPUT=" + (withOutput? "1" : "0"));
261 vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0"));
262 vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0"));
263 vf.WriteLine("STATIC=" + (buildStatic? "1" : "0"));
264 vf.WriteLine("PREFIX=" + buildPrefix);
265 vf.WriteLine("BINPREFIX=" + buildBinPrefix);
266 vf.WriteLine("INCPREFIX=" + buildIncPrefix);
267 vf.WriteLine("LIBPREFIX=" + buildLibPrefix);
268 vf.WriteLine("SOPREFIX=" + buildSoPrefix);
270 vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude);
271 vf.WriteLine("LIB=$(LIB);" + buildLib);
272 vf.WriteLine("CRUNTIME=" + cruntime);
273 vf.WriteLine("VCMANIFEST=" + (vcmanifest? "1" : "0"));
275 vf.WriteLine("INCLUDE+= -I" + buildInclude);
276 vf.WriteLine("LIB+= -L" + buildLib);
278 vf.WriteLine("INCLUDE=" + buildInclude);
279 vf.WriteLine("LIB=" + buildLib);
280 vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0"));
297 of.WriteLine(s.replace(/\@VERSION\@/,
300 of.WriteLine(s.replace(/\@LIBXML_VERSION_NUMBER\@/,
303 of.WriteLine(s.replace(/\@LIBXML_VERSION_EXTRA\@/, verCvs));
305 of.WriteLine(s.replace(/\@WITH_TRIO\@/, withTrio? "1" : "0"));
307 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
309 of.WriteLine(s.replace(/\@WITH_THREAD_ALLOC\@/, "0"));
311 of.WriteLine(s.replace(/\@WITH_FTP\@/, withFtp? "1" : "0"));
313 of.WriteLine(s.replace(/\@WITH_HTTP\@/, withHttp? "1" : "0"));
315 of.WriteLine(s.replace(/\@WITH_HTML\@/, withHtml? "1" : "0"));
317 of.WriteLine(s.replace(/\@WITH_C14N\@/, withC14n? "1" : "0"));
319 of.WriteLine(s.replace(/\@WITH_CATALOG\@/, withCatalog? "1" : "0"));
321 of.WriteLine(s.replace(/\@WITH_DOCB\@/, withDocb? "1" : "0"));
323 of.WriteLine(s.replace(/\@WITH_XPATH\@/, withXpath? "1" : "0"));
325 of.WriteLine(s.replace(/\@WITH_XPTR\@/, withXptr? "1" : "0"));
327 of.WriteLine(s.replace(/\@WITH_XINCLUDE\@/, withXinclude? "1" : "0"));
329 of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0"));
331 of.WriteLine(s.replace(/\@WITH_ICU\@/, withIcu? "1" : "0"));
333 of.WriteLine(s.replace(/\@WITH_ISO8859X\@/, withIso8859x? "1" : "0"));
335 of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0"));
337 of.WriteLine(s.replace(/\@WITH_LZMA\@/, withLzma? "1" : "0"));
339 of.WriteLine(s.replace(/\@WITH_DEBUG\@/, withDebug? "1" : "0"));
341 of.WriteLine(s.replace(/\@WITH_MEM_DEBUG\@/, withMemDebug? "1" : "0"));
343 of.WriteLine(s.replace(/\@WITH_RUN_DEBUG\@/, withRunDebug? "1" : "0"));
345 of.WriteLine(s.replace(/\@WITH_SCHEMAS\@/, withSchemas? "1" : "0"));
347 of.WriteLine(s.replace(/\@WITH_SCHEMATRON\@/, withSchematron? "1" : "0"));
349 of.WriteLine(s.replace(/\@WITH_REGEXPS\@/, withRegExps? "1" : "0"));
351 of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0"));
353 of.WriteLine(s.replace(/\@MODULE_EXTENSION\@/, ".dll"));
355 of.WriteLine(s.replace(/\@WITH_TREE\@/, withTree? "1" : "0"));
357 of.WriteLine(s.replace(/\@WITH_READER\@/, withReader? "1" : "0"));
359 of.WriteLine(s.replace(/\@WITH_WRITER\@/, withWriter? "1" : "0"));
361 of.WriteLine(s.replace(/\@WITH_WALKER\@/, withWalker? "1" : "0"));
363 of.WriteLine(s.replace(/\@WITH_PATTERN\@/, withPattern? "1" : "0"));
365 of.WriteLine(s.replace(/\@WITH_PUSH\@/, withPush? "1" : "0"));
367 of.WriteLine(s.replace(/\@WITH_VALID\@/, withValid? "1" : "0"));
369 of.WriteLine(s.replace(/\@WITH_SAX1\@/, withSax1? "1" : "0"));
371 of.WriteLine(s.replace(/\@WITH_LEGACY\@/, withLegacy? "1" : "0"));
373 of.WriteLine(s.replace(/\@WITH_OUTPUT\@/, withOutput? "1" : "0"));
375 of.WriteLine(ln);
393 of.WriteLine(s.replace(/\@LIBXML_VERSION\@/,
396 of.WriteLine(s.replace(/\@prefix\@/, buildPrefix));
398 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
400 of.WriteLine(ln);
414 f.WriteLine(" " + bname + " " + ver);
415 f.WriteLine(" --------------");
417 f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32");
418 f.WriteLine("platform.");
420 f.WriteLine(" The files in this package do not require any special installation");
421 f.WriteLine("steps. Extract the contents of the archive whereever you wish and");
422 f.WriteLine("make sure that your tools which use " + bname + " can find it.");
424 f.WriteLine(" For example, if you want to run the supplied utilities from the command");
425 f.WriteLine("line, you can, if you wish, add the 'bin' subdirectory to the PATH");
426 f.WriteLine("environment variable.");
427 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
428 f.WriteLine("likely know how to use the contents of this package. If you don't, please");
429 f.WriteLine("refer to your compiler's documentation.");
431 f.WriteLine(" If there is something you cannot keep for yourself, such as a problem,");
432 f.WriteLine("a cheer of joy, a comment or a suggestion, feel free to contact me using");
433 f.WriteLine("the address below.");
435 f.WriteLine(" Igor Zlatkovic (igor@zlatkovic.com)");