Home | History | Annotate | Download | only in win32

Lines Matching refs:vf

180 	var fso, cf, vf, ln, s, iDot, iSlash;
204 vf = fso.CreateTextFile(versionFile, true);
205 vf.WriteLine("# " + versionFile);
206 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
207 vf.WriteBlankLines(1);
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"));
282 vf.Close();
284 vf = fso.CreateTextFile(versionFile, true);
285 vf.WriteLine("/*");
286 vf.WriteLine(" " + versionFile);
287 vf.WriteLine(" This file is generated automatically by " + WScript.ScriptName + ".");
288 vf.WriteLine("*/");
289 vf.WriteBlankLines(1);
290 vf.WriteLine("#define LIBXML_MAJOR_VERSION " + verMajor);
291 vf.WriteLine("#define LIBXML_MINOR_VERSION " + verMinor);
292 vf.WriteLine("#define LIBXML_MICRO_VERSION " + verMicro);
293 vf.WriteLine("#define LIBXML_DOTTED_VERSION " + "\"" + verMajor + "." + verMinor + "." + verMicro + "\"");
294 vf.Close()