Home | History | Annotate | Download | only in win32

Lines Matching refs:vf

178 	var fso, cf, vf, ln, s, iDot, iSlash;
202 vf = fso.CreateTextFile(versionFile, true);
203 vf.WriteLine("# " + versionFile);
204 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
205 vf.WriteBlankLines(1);
210 vf.WriteLine(s);
213 vf.WriteLine(s);
216 vf.WriteLine(s);
219 vf.WriteLine(s);
224 vf.WriteLine("XML_SRCDIR=" + srcDirXml);
225 vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils);
226 vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0"));
227 vf.WriteLine("WITH_THREADS=" + withThreads);
228 vf.WriteLine("WITH_FTP=" + (withFtp? "1" : "0"));
229 vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0"));
230 vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0"));
231 vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0"));
232 vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0"));
233 vf.WriteLine("WITH_DOCB=" + (withDocb? "1" : "0"));
234 vf.WriteLine("WITH_XPATH=" + (withXpath? "1" : "0"));
235 vf.WriteLine("WITH_XPTR=" + (withXptr? "1" : "0"));
236 vf.WriteLine("WITH_XINCLUDE=" + (withXinclude? "1" : "0"));
237 vf.WriteLine("WITH_ICONV=" + (withIconv? "1" : "0"));
238 vf.WriteLine("WITH_ICU=" + (withIcu? "1" : "0"));
239 vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0"));
240 vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0"));
241 vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0"));
242 vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0"));
243 vf.WriteLine("WITH_RUN_DEBUG=" + (withRunDebug? "1" : "0"));
244 vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0"));
245 vf.WriteLine("WITH_SCHEMATRON=" + (withSchematron? "1" : "0"));
246 vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0"));
247 vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0"));
248 vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0"));
249 vf.WriteLine("WITH_READER=" + (withReader? "1" : "0"));
250 vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0"));
251 vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0"));
252 vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0"));
253 vf.WriteLine("WITH_PUSH=" + (withPush? "1" : "0"));
254 vf.WriteLine("WITH_VALID=" + (withValid? "1" : "0"));
255 vf.WriteLine("WITH_SAX1=" + (withSax1? "1" : "0"));
256 vf.WriteLine("WITH_LEGACY=" + (withLegacy? "1" : "0"));
257 vf.WriteLine("WITH_OUTPUT=" + (withOutput? "1" : "0"));
258 vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0"));
259 vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0"));
260 vf.WriteLine("STATIC=" + (buildStatic? "1" : "0"));
261 vf.WriteLine("PREFIX=" + buildPrefix);
262 vf.WriteLine("BINPREFIX=" + buildBinPrefix);
263 vf.WriteLine("INCPREFIX=" + buildIncPrefix);
264 vf.WriteLine("LIBPREFIX=" + buildLibPrefix);
265 vf.WriteLine("SOPREFIX=" + buildSoPrefix);
267 vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude);
268 vf.WriteLine("LIB=$(LIB);" + buildLib);
269 vf.WriteLine("CRUNTIME=" + cruntime);
270 vf.WriteLine("VCMANIFEST=" + (vcmanifest? "1" : "0"));
272 vf.WriteLine("INCLUDE+=;" + buildInclude);
273 vf.WriteLine("LIB+=;" + buildLib);
275 vf.WriteLine("INCLUDE=" + buildInclude);
276 vf.WriteLine("LIB=" + buildLib);
277 vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0"));
279 vf.Close();