blob: dbf238c70c4e0828d79065c8e663b758113926ba [file] [log] [blame]
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +00001/* Configure script for libxml, specific for Windows with Scripting Host.
2 *
3 * This script will configure the libxml build process and create necessary files.
4 * Run it with an 'help', or an invalid option and it will tell you what options
5 * it accepts.
6 *
Daniel Veillardbeb70bd2002-12-18 14:53:54 +00007 * March 2002, Igor Zlatkovic <igor@zlatkovic.com>
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +00008 */
9
10/* The source directory, relative to the one where this file resides. */
11var srcDirXml = "..";
12var srcDirUtils = "..";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000013/* Base name of what we are building. */
14var baseName = "libxml2";
15/* Configure file which contains the version and the output file where
16 we can store our build configuration. */
Daniel Veillard7580ce02014-10-28 18:13:53 +080017var configFile = srcDirXml + "\\configure.ac";
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +000018var versionFile = ".\\config.msvc";
Igor Zlatkovic853514f2002-11-22 21:41:09 +000019/* Input and output files regarding the libxml features. */
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000020var optsFileIn = srcDirXml + "\\include\\libxml\\xmlversion.h.in";
21var optsFile = srcDirXml + "\\include\\libxml\\xmlversion.h";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000022/* Version strings for the binary distribution. Will be filled later
23 in the code. */
24var verMajor;
25var verMinor;
26var verMicro;
Igor Zlatkovic6425b382003-10-25 15:38:34 +000027var verMicroSuffix;
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +000028var verCvs;
29var useCvsVer = true;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000030/* Libxml features. */
31var withTrio = false;
Igor Zlatkovice38ab532003-05-17 11:30:54 +000032var withThreads = "native";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000033var withFtp = true;
34var withHttp = true;
35var withHtml = true;
36var withC14n = true;
37var withCatalog = true;
38var withDocb = true;
39var withXpath = true;
40var withXptr = true;
41var withXinclude = true;
42var withIconv = true;
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +010043var withIcu = false;
William M. Brack6d13f332003-08-08 16:40:36 +000044var withIso8859x = false;
Igor Zlatkovic3acadf42002-09-20 16:40:17 +000045var withZlib = false;
Rob Richards2d84ea12012-03-21 10:37:06 -040046var withLzma = false;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000047var withDebug = true;
48var withMemDebug = false;
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +000049var withRunDebug = false;
Igor Zlatkovica6f2d902002-04-16 17:57:17 +000050var withSchemas = true;
Daniel Veillard5fe95a82005-07-31 14:05:18 +000051var withSchematron = true;
Igor Zlatkovic8e040972002-09-20 13:39:53 +000052var withRegExps = true;
Daniel Veillardce1648b2005-01-04 15:10:22 +000053var withModules = true;
Daniel Veillard141310a2003-10-06 08:47:56 +000054var withTree = true;
55var withReader = true;
Daniel Veillardea048932003-10-21 09:27:57 +000056var withWriter = true;
Daniel Veillard141310a2003-10-06 08:47:56 +000057var withWalker = true;
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +000058var withPattern = true;
Daniel Veillard141310a2003-10-06 08:47:56 +000059var withPush = true;
60var withValid = true;
61var withSax1 = true;
62var withLegacy = true;
63var withOutput = true;
Igor Zlatkovic853514f2002-11-22 21:41:09 +000064var withPython = false;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000065/* Win32 build options. */
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +000066var dirSep = "\\";
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +000067var compiler = "msvc";
Igor Zlatkovic4f928212003-11-27 18:39:01 +000068var cruntime = "/MD";
Igor Zlatkovicc7646e62003-12-01 11:33:27 +000069var dynruntime = true;
Rob Richards90ee8df2007-06-08 19:47:37 +000070var vcmanifest = false;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000071var buildDebug = 0;
72var buildStatic = 0;
73var buildPrefix = ".";
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +000074var buildBinPrefix = "";
75var buildIncPrefix = "";
76var buildLibPrefix = "";
77var buildSoPrefix = "";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000078var buildInclude = ".";
79var buildLib = ".";
80/* Local stuff */
81var error = 0;
82
83/* Helper function, transforms the option variable into the 'Enabled'
84 or 'Disabled' string. */
85function boolToStr(opt)
86{
87 if (opt == false)
Igor Zlatkovic8f536a82002-10-31 16:01:00 +000088 return "no";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000089 else if (opt == true)
Igor Zlatkovic8f536a82002-10-31 16:01:00 +000090 return "yes";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000091 error = 1;
Igor Zlatkovic8f536a82002-10-31 16:01:00 +000092 return "*** undefined ***";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +000093}
94
95/* Helper function, transforms the argument string into a boolean
96 value. */
97function strToBool(opt)
98{
99 if (opt == 0 || opt == "no")
100 return false;
101 else if (opt == 1 || opt == "yes")
102 return true;
103 error = 1;
104 return false;
105}
106
107/* Displays the details about how to use this script. */
108function usage()
109{
110 var txt;
111 txt = "Usage:\n";
112 txt += " cscript " + WScript.ScriptName + " <options>\n";
113 txt += " cscript " + WScript.ScriptName + " help\n\n";
114 txt += "Options can be specified in the form <option>=<value>, where the value is\n";
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000115 txt += "either 'yes' or 'no', if not stated otherwise.\n\n";
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000116 txt += "\nXML processor options, default value given in parentheses:\n\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000117 txt += " trio: Enable TRIO string manipulator (" + (withTrio? "yes" : "no") + ")\n";
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000118 txt += " threads: Enable thread safety [no|ctls|native|posix] (" + (withThreads) + ") \n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000119 txt += " ftp: Enable FTP client (" + (withFtp? "yes" : "no") + ")\n";
120 txt += " http: Enable HTTP client (" + (withHttp? "yes" : "no") + ")\n";
121 txt += " html: Enable HTML processor (" + (withHtml? "yes" : "no") + ")\n";
122 txt += " c14n: Enable C14N support (" + (withC14n? "yes" : "no") + ")\n";
123 txt += " catalog: Enable catalog support (" + (withCatalog? "yes" : "no") + ")\n";
124 txt += " docb: Enable DocBook support (" + (withDocb? "yes" : "no") + ")\n";
125 txt += " xpath: Enable XPath support (" + (withXpath? "yes" : "no") + ")\n";
126 txt += " xptr: Enable XPointer support (" + (withXptr? "yes" : "no") + ")\n";
127 txt += " xinclude: Enable XInclude support (" + (withXinclude? "yes" : "no") + ")\n";
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000128 txt += " iconv: Enable iconv support (" + (withIconv? "yes" : "no") + ")\n";
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100129 txt += " icu: Enable icu support (" + (withIcu? "yes" : "no") + ")\n";
William M. Brack6d13f332003-08-08 16:40:36 +0000130 txt += " iso8859x: Enable ISO8859X support (" + (withIso8859x? "yes" : "no") + ")\n";
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000131 txt += " zlib: Enable zlib support (" + (withZlib? "yes" : "no") + ")\n";
Rob Richards2d84ea12012-03-21 10:37:06 -0400132 txt += " lzma: Enable lzma support (" + (withLzma? "yes" : "no") + ")\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000133 txt += " xml_debug: Enable XML debbugging module (" + (withDebug? "yes" : "no") + ")\n";
134 txt += " mem_debug: Enable memory debugger (" + (withMemDebug? "yes" : "no") + ")\n";
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +0000135 txt += " run_debug: Enable memory debugger (" + (withRunDebug? "yes" : "no") + ")\n";
Igor Zlatkovic8e040972002-09-20 13:39:53 +0000136 txt += " regexps: Enable regular expressions (" + (withRegExps? "yes" : "no") + ")\n";
Daniel Veillardce1648b2005-01-04 15:10:22 +0000137 txt += " modules: Enable module support (" + (withModules? "yes" : "no") + ")\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000138 txt += " tree: Enable tree api (" + (withTree? "yes" : "no") + ")\n";
139 txt += " reader: Enable xmlReader api (" + (withReader? "yes" : "no") + ")\n";
Daniel Veillardea048932003-10-21 09:27:57 +0000140 txt += " writer: Enable xmlWriter api (" + (withWriter? "yes" : "no") + ")\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000141 txt += " walker: Enable xmlDocWalker api (" + (withWalker? "yes" : "no") + ")\n";
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +0000142 txt += " pattern: Enable xmlPattern api (" + (withPattern? "yes" : "no") + ")\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000143 txt += " push: Enable push api (" + (withPush? "yes" : "no") + ")\n";
144 txt += " valid: Enable DTD validation support (" + (withValid? "yes" : "no") + ")\n";
145 txt += " sax1: Enable SAX1 api (" + (withSax1? "yes" : "no") + ")\n";
146 txt += " legacy: Enable Deprecated api's (" + (withLegacy? "yes" : "no") + ")\n";
147 txt += " output: Enable serialization support (" + (withOutput? "yes" : "no") + ")\n";
Igor Zlatkovica6f2d902002-04-16 17:57:17 +0000148 txt += " schemas: Enable XML Schema support (" + (withSchemas? "yes" : "no") + ")\n";
Daniel Veillard5fe95a82005-07-31 14:05:18 +0000149 txt += " schematron: Enable Schematron support (" + (withSchematron? "yes" : "no") + ")\n";
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000150 txt += " python: Build Python bindings (" + (withPython? "yes" : "no") + ")\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000151 txt += "\nWin32 build options, default value given in parentheses:\n\n";
Igor Zlatkovic72f92a82003-06-14 16:48:26 +0000152 txt += " compiler: Compiler to be used [msvc|mingw|bcb] (" + compiler + ")\n";
Igor Zlatkovic4f928212003-11-27 18:39:01 +0000153 txt += " cruntime: C-runtime compiler option (only msvc) (" + cruntime + ")\n";
Igor Zlatkovicc7646e62003-12-01 11:33:27 +0000154 txt += " dynruntime: Use the dynamic RTL (only bcb) (" + dynruntime + ")\n";
Rob Richards90ee8df2007-06-08 19:47:37 +0000155 txt += " vcmanifest: Embed VC manifest (only msvc) (" + (vcmanifest? "yes" : "no") + ")\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000156 txt += " debug: Build unoptimised debug executables (" + (buildDebug? "yes" : "no") + ")\n";
157 txt += " static: Link xmllint statically to libxml2 (" + (buildStatic? "yes" : "no") + ")\n";
Daniel Veillard53516952005-01-27 23:59:14 +0000158 txt += " Note: automatically enabled if cruntime is not /MD or /MDd\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000159 txt += " prefix: Base directory for the installation (" + buildPrefix + ")\n";
160 txt += " bindir: Directory where xmllint and friends should be installed\n";
161 txt += " (" + buildBinPrefix + ")\n";
162 txt += " incdir: Directory where headers should be installed\n";
163 txt += " (" + buildIncPrefix + ")\n";
164 txt += " libdir: Directory where static and import libraries should be\n";
165 txt += " installed (" + buildLibPrefix + ")\n";
166 txt += " sodir: Directory where shared libraries should be installed\n";
167 txt += " (" + buildSoPrefix + ")\n";
168 txt += " include: Additional search path for the compiler, particularily\n";
169 txt += " where iconv headers can be found (" + buildInclude + ")\n";
170 txt += " lib: Additional search path for the linker, particularily\n";
171 txt += " where iconv library can be found (" + buildLib + ")\n";
172 WScript.Echo(txt);
173}
174
175/* Discovers the version we are working with by reading the apropriate
176 configuration file. Despite its name, this also writes the configuration
177 file included by our makefile. */
178function discoverVersion()
179{
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +0000180 var fso, cf, vf, ln, s, iDot, iSlash;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000181 fso = new ActiveXObject("Scripting.FileSystemObject");
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +0000182 verCvs = "";
183 if (useCvsVer && fso.FileExists("..\\CVS\\Entries")) {
184 cf = fso.OpenTextFile("..\\CVS\\Entries", 1);
185 while (cf.AtEndOfStream != true) {
186 ln = cf.ReadLine();
187 s = new String(ln);
188 if (s.search(/^\/ChangeLog\//) != -1) {
189 iDot = s.indexOf(".");
190 iSlash = s.indexOf("/", iDot);
191 verCvs = "CVS" + s.substring(iDot + 1, iSlash);
192 break;
193 }
194 }
195 cf.Close();
196 }
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000197 cf = fso.OpenTextFile(configFile, 1);
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000198 if (compiler == "msvc")
199 versionFile = ".\\config.msvc";
200 else if (compiler == "mingw")
201 versionFile = ".\\config.mingw";
Igor Zlatkovic72f92a82003-06-14 16:48:26 +0000202 else if (compiler == "bcb")
203 versionFile = ".\\config.bcb";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000204 vf = fso.CreateTextFile(versionFile, true);
205 vf.WriteLine("# " + versionFile);
206 vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
207 vf.WriteBlankLines(1);
208 while (cf.AtEndOfStream != true) {
209 ln = cf.ReadLine();
210 s = new String(ln);
Daniel Veillard70b18562003-09-24 21:45:21 +0000211 if (s.search(/^LIBXML_MAJOR_VERSION=/) != -1) {
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000212 vf.WriteLine(s);
213 verMajor = s.substring(s.indexOf("=") + 1, s.length)
Daniel Veillard70b18562003-09-24 21:45:21 +0000214 } else if(s.search(/^LIBXML_MINOR_VERSION=/) != -1) {
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000215 vf.WriteLine(s);
216 verMinor = s.substring(s.indexOf("=") + 1, s.length)
Daniel Veillard70b18562003-09-24 21:45:21 +0000217 } else if(s.search(/^LIBXML_MICRO_VERSION=/) != -1) {
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000218 vf.WriteLine(s);
219 verMicro = s.substring(s.indexOf("=") + 1, s.length)
Daniel Veillard70b18562003-09-24 21:45:21 +0000220 } else if(s.search(/^LIBXML_MICRO_VERSION_SUFFIX=/) != -1) {
221 vf.WriteLine(s);
222 verMicroSuffix = s.substring(s.indexOf("=") + 1, s.length)
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000223 }
224 }
225 cf.Close();
226 vf.WriteLine("XML_SRCDIR=" + srcDirXml);
227 vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000228 vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0"));
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000229 vf.WriteLine("WITH_THREADS=" + withThreads);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000230 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"));
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100240 vf.WriteLine("WITH_ICU=" + (withIcu? "1" : "0"));
William M. Brack6d13f332003-08-08 16:40:36 +0000241 vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0"));
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000242 vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0"));
Rob Richards2d84ea12012-03-21 10:37:06 -0400243 vf.WriteLine("WITH_LZMA=" + (withLzma? "1" : "0"));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000244 vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0"));
245 vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0"));
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +0000246 vf.WriteLine("WITH_RUN_DEBUG=" + (withRunDebug? "1" : "0"));
Igor Zlatkovica6f2d902002-04-16 17:57:17 +0000247 vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0"));
Daniel Veillard5fe95a82005-07-31 14:05:18 +0000248 vf.WriteLine("WITH_SCHEMATRON=" + (withSchematron? "1" : "0"));
Igor Zlatkovic8e040972002-09-20 13:39:53 +0000249 vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0"));
Daniel Veillardce1648b2005-01-04 15:10:22 +0000250 vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000251 vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0"));
252 vf.WriteLine("WITH_READER=" + (withReader? "1" : "0"));
Daniel Veillardea048932003-10-21 09:27:57 +0000253 vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000254 vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0"));
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +0000255 vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000256 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"));
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000261 vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0"));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000262 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);
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000269 if (compiler == "msvc") {
270 vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude);
271 vf.WriteLine("LIB=$(LIB);" + buildLib);
Igor Zlatkovic4f928212003-11-27 18:39:01 +0000272 vf.WriteLine("CRUNTIME=" + cruntime);
Rob Richards90ee8df2007-06-08 19:47:37 +0000273 vf.WriteLine("VCMANIFEST=" + (vcmanifest? "1" : "0"));
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000274 } else if (compiler == "mingw") {
Patrick von Rethf1da8ab2011-09-14 16:00:28 +0800275 vf.WriteLine("INCLUDE+= -I" + buildInclude);
276 vf.WriteLine("LIB+= -L" + buildLib);
Igor Zlatkovic72f92a82003-06-14 16:48:26 +0000277 } else if (compiler == "bcb") {
278 vf.WriteLine("INCLUDE=" + buildInclude);
279 vf.WriteLine("LIB=" + buildLib);
Rob Richards90ee8df2007-06-08 19:47:37 +0000280 vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0"));
Igor Zlatkovic72f92a82003-06-14 16:48:26 +0000281 }
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000282 vf.Close();
ccpagingd4049192017-11-27 15:08:00 +0100283 versionFile = "rcVersion.h"
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()
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000295}
296
297/* Configures libxml. This one will generate xmlversion.h from xmlversion.h.in
298 taking what the user passed on the command line into account. */
299function configureLibxml()
300{
301 var fso, ofi, of, ln, s;
302 fso = new ActiveXObject("Scripting.FileSystemObject");
303 ofi = fso.OpenTextFile(optsFileIn, 1);
304 of = fso.CreateTextFile(optsFile, true);
305 while (ofi.AtEndOfStream != true) {
306 ln = ofi.ReadLine();
307 s = new String(ln);
308 if (s.search(/\@VERSION\@/) != -1) {
309 of.WriteLine(s.replace(/\@VERSION\@/,
Daniel Veillard70b18562003-09-24 21:45:21 +0000310 verMajor + "." + verMinor + "." + verMicro + verMicroSuffix));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000311 } else if (s.search(/\@LIBXML_VERSION_NUMBER\@/) != -1) {
312 of.WriteLine(s.replace(/\@LIBXML_VERSION_NUMBER\@/,
313 verMajor*10000 + verMinor*100 + verMicro*1));
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +0000314 } else if (s.search(/\@LIBXML_VERSION_EXTRA\@/) != -1) {
315 of.WriteLine(s.replace(/\@LIBXML_VERSION_EXTRA\@/, verCvs));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000316 } else if (s.search(/\@WITH_TRIO\@/) != -1) {
317 of.WriteLine(s.replace(/\@WITH_TRIO\@/, withTrio? "1" : "0"));
318 } else if (s.search(/\@WITH_THREADS\@/) != -1) {
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000319 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
Daniel Richarda0571eb2012-12-12 17:16:00 +0800320 } else if (s.search(/\@WITH_THREAD_ALLOC\@/) != -1) {
321 of.WriteLine(s.replace(/\@WITH_THREAD_ALLOC\@/, "0"));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000322 } else if (s.search(/\@WITH_FTP\@/) != -1) {
323 of.WriteLine(s.replace(/\@WITH_FTP\@/, withFtp? "1" : "0"));
324 } else if (s.search(/\@WITH_HTTP\@/) != -1) {
325 of.WriteLine(s.replace(/\@WITH_HTTP\@/, withHttp? "1" : "0"));
326 } else if (s.search(/\@WITH_HTML\@/) != -1) {
327 of.WriteLine(s.replace(/\@WITH_HTML\@/, withHtml? "1" : "0"));
328 } else if (s.search(/\@WITH_C14N\@/) != -1) {
329 of.WriteLine(s.replace(/\@WITH_C14N\@/, withC14n? "1" : "0"));
330 } else if (s.search(/\@WITH_CATALOG\@/) != -1) {
331 of.WriteLine(s.replace(/\@WITH_CATALOG\@/, withCatalog? "1" : "0"));
332 } else if (s.search(/\@WITH_DOCB\@/) != -1) {
333 of.WriteLine(s.replace(/\@WITH_DOCB\@/, withDocb? "1" : "0"));
334 } else if (s.search(/\@WITH_XPATH\@/) != -1) {
335 of.WriteLine(s.replace(/\@WITH_XPATH\@/, withXpath? "1" : "0"));
336 } else if (s.search(/\@WITH_XPTR\@/) != -1) {
337 of.WriteLine(s.replace(/\@WITH_XPTR\@/, withXptr? "1" : "0"));
338 } else if (s.search(/\@WITH_XINCLUDE\@/) != -1) {
339 of.WriteLine(s.replace(/\@WITH_XINCLUDE\@/, withXinclude? "1" : "0"));
340 } else if (s.search(/\@WITH_ICONV\@/) != -1) {
341 of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0"));
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100342 } else if (s.search(/\@WITH_ICU\@/) != -1) {
343 of.WriteLine(s.replace(/\@WITH_ICU\@/, withIcu? "1" : "0"));
William M. Brack6d13f332003-08-08 16:40:36 +0000344 } else if (s.search(/\@WITH_ISO8859X\@/) != -1) {
345 of.WriteLine(s.replace(/\@WITH_ISO8859X\@/, withIso8859x? "1" : "0"));
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000346 } else if (s.search(/\@WITH_ZLIB\@/) != -1) {
347 of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0"));
Rob Richards2d84ea12012-03-21 10:37:06 -0400348 } else if (s.search(/\@WITH_LZMA\@/) != -1) {
349 of.WriteLine(s.replace(/\@WITH_LZMA\@/, withLzma? "1" : "0"));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000350 } else if (s.search(/\@WITH_DEBUG\@/) != -1) {
351 of.WriteLine(s.replace(/\@WITH_DEBUG\@/, withDebug? "1" : "0"));
352 } else if (s.search(/\@WITH_MEM_DEBUG\@/) != -1) {
353 of.WriteLine(s.replace(/\@WITH_MEM_DEBUG\@/, withMemDebug? "1" : "0"));
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +0000354 } else if (s.search(/\@WITH_RUN_DEBUG\@/) != -1) {
355 of.WriteLine(s.replace(/\@WITH_RUN_DEBUG\@/, withRunDebug? "1" : "0"));
Igor Zlatkovica6f2d902002-04-16 17:57:17 +0000356 } else if (s.search(/\@WITH_SCHEMAS\@/) != -1) {
357 of.WriteLine(s.replace(/\@WITH_SCHEMAS\@/, withSchemas? "1" : "0"));
Daniel Veillard5fe95a82005-07-31 14:05:18 +0000358 } else if (s.search(/\@WITH_SCHEMATRON\@/) != -1) {
359 of.WriteLine(s.replace(/\@WITH_SCHEMATRON\@/, withSchematron? "1" : "0"));
Igor Zlatkovic8e040972002-09-20 13:39:53 +0000360 } else if (s.search(/\@WITH_REGEXPS\@/) != -1) {
361 of.WriteLine(s.replace(/\@WITH_REGEXPS\@/, withRegExps? "1" : "0"));
Daniel Veillardce1648b2005-01-04 15:10:22 +0000362 } else if (s.search(/\@WITH_MODULES\@/) != -1) {
363 of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0"));
364 } else if (s.search(/\@MODULE_EXTENSION\@/) != -1) {
365 of.WriteLine(s.replace(/\@MODULE_EXTENSION\@/, ".dll"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000366 } else if (s.search(/\@WITH_TREE\@/) != -1) {
367 of.WriteLine(s.replace(/\@WITH_TREE\@/, withTree? "1" : "0"));
368 } else if (s.search(/\@WITH_READER\@/) != -1) {
369 of.WriteLine(s.replace(/\@WITH_READER\@/, withReader? "1" : "0"));
Daniel Veillardea048932003-10-21 09:27:57 +0000370 } else if (s.search(/\@WITH_WRITER\@/) != -1) {
371 of.WriteLine(s.replace(/\@WITH_WRITER\@/, withWriter? "1" : "0"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000372 } else if (s.search(/\@WITH_WALKER\@/) != -1) {
373 of.WriteLine(s.replace(/\@WITH_WALKER\@/, withWalker? "1" : "0"));
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +0000374 } else if (s.search(/\@WITH_PATTERN\@/) != -1) {
375 of.WriteLine(s.replace(/\@WITH_PATTERN\@/, withPattern? "1" : "0"));
Daniel Veillard141310a2003-10-06 08:47:56 +0000376 } else if (s.search(/\@WITH_PUSH\@/) != -1) {
377 of.WriteLine(s.replace(/\@WITH_PUSH\@/, withPush? "1" : "0"));
378 } else if (s.search(/\@WITH_VALID\@/) != -1) {
379 of.WriteLine(s.replace(/\@WITH_VALID\@/, withValid? "1" : "0"));
380 } else if (s.search(/\@WITH_SAX1\@/) != -1) {
381 of.WriteLine(s.replace(/\@WITH_SAX1\@/, withSax1? "1" : "0"));
382 } else if (s.search(/\@WITH_LEGACY\@/) != -1) {
383 of.WriteLine(s.replace(/\@WITH_LEGACY\@/, withLegacy? "1" : "0"));
384 } else if (s.search(/\@WITH_OUTPUT\@/) != -1) {
385 of.WriteLine(s.replace(/\@WITH_OUTPUT\@/, withOutput? "1" : "0"));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000386 } else
387 of.WriteLine(ln);
388 }
389 ofi.Close();
390 of.Close();
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000391}
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000392/* Configures Python bindings. Otherwise identical to the above */
393function configureLibxmlPy()
394{
395 var pyOptsFileIn = srcDirXml + "\\python\\setup.py.in";
396 var pyOptsFile = srcDirXml + "\\python\\setup.py";
397 var fso, ofi, of, ln, s;
398 fso = new ActiveXObject("Scripting.FileSystemObject");
399 ofi = fso.OpenTextFile(pyOptsFileIn, 1);
400 of = fso.CreateTextFile(pyOptsFile, true);
401 while (ofi.AtEndOfStream != true) {
402 ln = ofi.ReadLine();
403 s = new String(ln);
404 if (s.search(/\@LIBXML_VERSION\@/) != -1) {
405 of.WriteLine(s.replace(/\@LIBXML_VERSION\@/,
406 verMajor + "." + verMinor + "." + verMicro));
407 } else if (s.search(/\@prefix\@/) != -1) {
408 of.WriteLine(s.replace(/\@prefix\@/, buildPrefix));
Daniel Veillard94bb2f12003-04-27 22:14:07 +0000409 } else if (s.search(/\@WITH_THREADS\@/) != -1) {
410 of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000411 } else
412 of.WriteLine(ln);
413 }
414 ofi.Close();
415 of.Close();
416}
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000417
418/* Creates the readme file for the binary distribution of 'bname', for the
419 version 'ver' in the file 'file'. This one is called from the Makefile when
420 generating a binary distribution. The parameters are passed by make. */
421function genReadme(bname, ver, file)
422{
423 var fso, f;
424 fso = new ActiveXObject("Scripting.FileSystemObject");
425 f = fso.CreateTextFile(file, true);
426 f.WriteLine(" " + bname + " " + ver);
427 f.WriteLine(" --------------");
428 f.WriteBlankLines(1);
429 f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32");
430 f.WriteLine("platform.");
431 f.WriteBlankLines(1);
Igor Zlatkovic72c28582004-06-09 14:32:47 +0000432 f.WriteLine(" The files in this package do not require any special installation");
433 f.WriteLine("steps. Extract the contents of the archive whereever you wish and");
434 f.WriteLine("make sure that your tools which use " + bname + " can find it.");
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000435 f.WriteBlankLines(1);
Igor Zlatkovic72c28582004-06-09 14:32:47 +0000436 f.WriteLine(" For example, if you want to run the supplied utilities from the command");
437 f.WriteLine("line, you can, if you wish, add the 'bin' subdirectory to the PATH");
438 f.WriteLine("environment variable.");
439 f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
440 f.WriteLine("likely know how to use the contents of this package. If you don't, please");
441 f.WriteLine("refer to your compiler's documentation.");
Igor Zlatkovic0ceeb8e2002-09-10 19:07:02 +0000442 f.WriteBlankLines(1);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000443 f.WriteLine(" If there is something you cannot keep for yourself, such as a problem,");
444 f.WriteLine("a cheer of joy, a comment or a suggestion, feel free to contact me using");
445 f.WriteLine("the address below.");
446 f.WriteBlankLines(1);
Daniel Veillardbeb70bd2002-12-18 14:53:54 +0000447 f.WriteLine(" Igor Zlatkovic (igor@zlatkovic.com)");
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000448 f.Close();
449}
450
William M. Brack6d13f332003-08-08 16:40:36 +0000451
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000452/*
453 * main(),
454 * Execution begins here.
455 */
456
457// Parse the command-line arguments.
458for (i = 0; (i < WScript.Arguments.length) && (error == 0); i++) {
459 var arg, opt;
460 arg = WScript.Arguments(i);
461 opt = arg.substring(0, arg.indexOf("="));
462 if (opt.length == 0)
463 opt = arg.substring(0, arg.indexOf(":"));
464 if (opt.length > 0) {
465 if (opt == "trio")
466 withTrio = strToBool(arg.substring(opt.length + 1, arg.length));
467 else if (opt == "threads")
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000468 withThreads = arg.substring(opt.length + 1, arg.length);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000469 else if (opt == "ftp")
470 withFtp = strToBool(arg.substring(opt.length + 1, arg.length));
471 else if (opt == "http")
472 withHttp = strToBool(arg.substring(opt.length + 1, arg.length));
473 else if (opt == "html")
474 withHtml = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovic9425ce22002-04-10 21:57:11 +0000475 else if (opt == "c14n")
476 withC14n = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000477 else if (opt == "catalog")
478 withCatalog = strToBool(arg.substring(opt.length + 1, arg.length));
479 else if (opt == "docb")
480 withDocb = strToBool(arg.substring(opt.length + 1, arg.length));
481 else if (opt == "xpath")
482 withXpath = strToBool(arg.substring(opt.length + 1, arg.length));
483 else if (opt == "xptr")
484 withXptr = strToBool(arg.substring(opt.length + 1, arg.length));
485 else if (opt == "xinclude")
486 withXinclude = strToBool(arg.substring(opt.length + 1, arg.length));
487 else if (opt == "iconv")
488 withIconv = strToBool(arg.substring(opt.length + 1, arg.length));
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100489 else if (opt == "icu")
490 withIcu = strToBool(arg.substring(opt.length + 1, arg.length));
William M. Brack6d13f332003-08-08 16:40:36 +0000491 else if (opt == "iso8859x")
492 withIso8859x = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000493 else if (opt == "zlib")
494 withZlib = strToBool(arg.substring(opt.length + 1, arg.length));
Rob Richards2d84ea12012-03-21 10:37:06 -0400495 else if (opt == "lzma")
496 withLzma = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000497 else if (opt == "xml_debug")
498 withDebug = strToBool(arg.substring(opt.length + 1, arg.length));
499 else if (opt == "mem_debug")
500 withMemDebug = strToBool(arg.substring(opt.length + 1, arg.length));
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +0000501 else if (opt == "run_debug")
502 withRunDebug = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovica6f2d902002-04-16 17:57:17 +0000503 else if (opt == "schemas")
504 withSchemas = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillard5fe95a82005-07-31 14:05:18 +0000505 else if (opt == "schematron")
506 withSchematron = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovic8e040972002-09-20 13:39:53 +0000507 else if (opt == "regexps")
508 withRegExps = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillardc2aa6152005-08-02 11:27:54 +0000509 else if (opt == "modules")
510 withModules = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillard141310a2003-10-06 08:47:56 +0000511 else if (opt == "tree")
512 withTree = strToBool(arg.substring(opt.length + 1, arg.length));
513 else if (opt == "reader")
514 withReader = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillardea048932003-10-21 09:27:57 +0000515 else if (opt == "writer")
516 withWriter = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillard141310a2003-10-06 08:47:56 +0000517 else if (opt == "walker")
518 withWalker = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +0000519 else if (opt == "pattern")
520 withPattern = strToBool(arg.substring(opt.length + 1, arg.length));
Daniel Veillard141310a2003-10-06 08:47:56 +0000521 else if (opt == "push")
522 withPush = strToBool(arg.substring(opt.length + 1, arg.length));
523 else if (opt == "valid")
524 withValid = strToBool(arg.substring(opt.length + 1, arg.length));
525 else if (opt == "sax1")
526 withSax1 = strToBool(arg.substring(opt.length + 1, arg.length));
527 else if (opt == "legacy")
528 withLegacy = strToBool(arg.substring(opt.length + 1, arg.length));
529 else if (opt == "output")
530 withOutput = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000531 else if (opt == "python")
532 withPython = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000533 else if (opt == "compiler")
534 compiler = arg.substring(opt.length + 1, arg.length);
Igor Zlatkovic4f928212003-11-27 18:39:01 +0000535 else if (opt == "cruntime")
536 cruntime = arg.substring(opt.length + 1, arg.length);
Igor Zlatkovicc7646e62003-12-01 11:33:27 +0000537 else if (opt == "dynruntime")
538 dynruntime = strToBool(arg.substring(opt.length + 1, arg.length));
Rob Richards90ee8df2007-06-08 19:47:37 +0000539 else if (opt == "vcmanifest")
540 vcmanifest = strToBool(arg.substring(opt.length + 1, arg.length));
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000541 else if (opt == "debug")
542 buildDebug = strToBool(arg.substring(opt.length + 1, arg.length));
543 else if (opt == "static")
544 buildStatic = strToBool(arg.substring(opt.length + 1, arg.length));
545 else if (opt == "prefix")
546 buildPrefix = arg.substring(opt.length + 1, arg.length);
547 else if (opt == "incdir")
548 buildIncPrefix = arg.substring(opt.length + 1, arg.length);
549 else if (opt == "bindir")
550 buildBinPrefix = arg.substring(opt.length + 1, arg.length);
551 else if (opt == "libdir")
552 buildLibPrefix = arg.substring(opt.length + 1, arg.length);
553 else if (opt == "sodir")
554 buildSoPrefix = arg.substring(opt.length + 1, arg.length);
555 else if (opt == "incdir")
556 buildIncPrefix = arg.substring(opt.length + 1, arg.length);
557 else if (opt == "include")
558 buildInclude = arg.substring(opt.length + 1, arg.length);
559 else if (opt == "lib")
560 buildLib = arg.substring(opt.length + 1, arg.length);
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +0000561 else if (opt == "release")
562 useCvsVer = false;
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000563 else
564 error = 1;
565 } else if (i == 0) {
566 if (arg == "genreadme") {
567 // This command comes from the Makefile and will not be checked
568 // for errors, because Makefile will always supply right the parameters.
569 genReadme(WScript.Arguments(1), WScript.Arguments(2), WScript.Arguments(3));
570 WScript.Quit(0);
571 } else if (arg == "help") {
572 usage();
573 WScript.Quit(0);
574 }
William M. Brack6d13f332003-08-08 16:40:36 +0000575
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +0000576 } else {
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000577 error = 1;
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +0000578 }
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000579}
580
William M. Brack6d13f332003-08-08 16:40:36 +0000581
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000582// If we fail here, it is because the user supplied an unrecognised argument.
583if (error != 0) {
584 usage();
585 WScript.Quit(error);
586}
Daniel Veillard53516952005-01-27 23:59:14 +0000587
588// if user choses to link the c-runtime library statically into libxml2
589// with /MT and friends, then we need to enable static linking for xmllint
590if (cruntime == "/MT" || cruntime == "/MTd" ||
591 cruntime == "/ML" || cruntime == "/MLd") {
592 buildStatic = 1;
593}
594
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +0000595dirSep = "\\";
Igor Zlatkovic01c0ced2003-08-28 10:49:25 +0000596if (buildBinPrefix == "")
597 buildBinPrefix = "$(PREFIX)" + dirSep + "bin";
598if (buildIncPrefix == "")
599 buildIncPrefix = "$(PREFIX)" + dirSep + "include";
600if (buildLibPrefix == "")
601 buildLibPrefix = "$(PREFIX)" + dirSep + "lib";
602if (buildSoPrefix == "")
Patrick von Rethf1da8ab2011-09-14 16:00:28 +0800603 buildSoPrefix = "$(PREFIX)" + dirSep + "bin";
William M. Brack6d13f332003-08-08 16:40:36 +0000604
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000605// Discover the version.
606discoverVersion();
607if (error != 0) {
608 WScript.Echo("Version discovery failed, aborting.");
609 WScript.Quit(error);
610}
William M. Brack6d13f332003-08-08 16:40:36 +0000611
Igor Zlatkovic8ea667f2004-08-24 14:42:29 +0000612var outVerString = baseName + " version: " + verMajor + "." + verMinor + "." + verMicro;
613if (verMicroSuffix && verMicroSuffix != "")
614 outVerString += "-" + verMicroSuffix;
615if (verCvs && verCvs != "")
616 outVerString += "-" + verCvs;
617WScript.Echo(outVerString);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000618
619// Configure libxml.
620configureLibxml();
621if (error != 0) {
622 WScript.Echo("Configuration failed, aborting.");
623 WScript.Quit(error);
624}
William M. Brack6d13f332003-08-08 16:40:36 +0000625
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000626if (withPython == true) {
627 configureLibxmlPy();
628 if (error != 0) {
629 WScript.Echo("Configuration failed, aborting.");
630 WScript.Quit(error);
631 }
William M. Brack6d13f332003-08-08 16:40:36 +0000632
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000633}
634
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000635// Create the makefile.
636var fso = new ActiveXObject("Scripting.FileSystemObject");
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000637var makefile = ".\\Makefile.msvc";
638if (compiler == "mingw")
639 makefile = ".\\Makefile.mingw";
Igor Zlatkovice8b5b0f2003-06-16 07:12:50 +0000640else if (compiler == "bcb")
641 makefile = ".\\Makefile.bcb";
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100642var new_makefile = ".\\Makefile";
643var f = fso.FileExists(new_makefile);
644if (f) {
645 var t = fso.GetFile(new_makefile);
646 t.Attributes =0;
647}
648fso.CopyFile(makefile, new_makefile, true);
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000649WScript.Echo("Created Makefile.");
Igor Zlatkovic1bab92d2003-08-28 10:24:40 +0000650// Create the config.h.
651var confighsrc = "..\\include\\win32config.h";
652var configh = "..\\config.h";
Daniel Veillard6b9d6952003-11-05 09:50:55 +0000653var f = fso.FileExists(configh);
654if (f) {
655 var t = fso.GetFile(configh);
656 t.Attributes =0;
657}
Igor Zlatkovic1bab92d2003-08-28 10:24:40 +0000658fso.CopyFile(confighsrc, configh, true);
659WScript.Echo("Created config.h.");
660
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000661
662// Display the final configuration.
663var txtOut = "\nXML processor configuration\n";
664txtOut += "---------------------------\n";
665txtOut += " Trio: " + boolToStr(withTrio) + "\n";
Igor Zlatkovic8f536a82002-10-31 16:01:00 +0000666txtOut += " Thread safety: " + withThreads + "\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000667txtOut += " FTP client: " + boolToStr(withFtp) + "\n";
668txtOut += " HTTP client: " + boolToStr(withHttp) + "\n";
669txtOut += " HTML processor: " + boolToStr(withHtml) + "\n";
670txtOut += " C14N support: " + boolToStr(withC14n) + "\n";
671txtOut += " Catalog support: " + boolToStr(withCatalog) + "\n";
672txtOut += " DocBook support: " + boolToStr(withDocb) + "\n";
673txtOut += " XPath support: " + boolToStr(withXpath) + "\n";
674txtOut += " XPointer support: " + boolToStr(withXptr) + "\n";
675txtOut += " XInclude support: " + boolToStr(withXinclude) + "\n";
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000676txtOut += " iconv support: " + boolToStr(withIconv) + "\n";
Giuseppe Iuculano48f7dcb2010-11-04 17:42:42 +0100677txtOut += " icu support: " + boolToStr(withIcu) + "\n";
William M. Brack6d13f332003-08-08 16:40:36 +0000678txtOut += " iso8859x support: " + boolToStr(withIso8859x) + "\n";
Igor Zlatkovic3acadf42002-09-20 16:40:17 +0000679txtOut += " zlib support: " + boolToStr(withZlib) + "\n";
Rob Richards2d84ea12012-03-21 10:37:06 -0400680txtOut += " lzma support: " + boolToStr(withLzma) + "\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000681txtOut += " Debugging module: " + boolToStr(withDebug) + "\n";
682txtOut += " Memory debugging: " + boolToStr(withMemDebug) + "\n";
Kasimier T. Buchcik4a113f92005-12-14 17:43:03 +0000683txtOut += " Runtime debugging: " + boolToStr(withRunDebug) + "\n";
Igor Zlatkovic8e040972002-09-20 13:39:53 +0000684txtOut += " Regexp support: " + boolToStr(withRegExps) + "\n";
Daniel Veillardce1648b2005-01-04 15:10:22 +0000685txtOut += " Module support: " + boolToStr(withModules) + "\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000686txtOut += " Tree support: " + boolToStr(withTree) + "\n";
687txtOut += " Reader support: " + boolToStr(withReader) + "\n";
Daniel Veillardea048932003-10-21 09:27:57 +0000688txtOut += " Writer support: " + boolToStr(withWriter) + "\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000689txtOut += " Walker support: " + boolToStr(withWalker) + "\n";
Igor Zlatkovicc5a29ca2003-12-11 13:56:54 +0000690txtOut += " Pattern support: " + boolToStr(withPattern) + "\n";
Daniel Veillard141310a2003-10-06 08:47:56 +0000691txtOut += " Push support: " + boolToStr(withPush) + "\n";
692txtOut += "Validation support: " + boolToStr(withValid) + "\n";
693txtOut += " SAX1 support: " + boolToStr(withSax1) + "\n";
694txtOut += " Legacy support: " + boolToStr(withLegacy) + "\n";
695txtOut += " Output support: " + boolToStr(withOutput) + "\n";
Igor Zlatkovica6f2d902002-04-16 17:57:17 +0000696txtOut += "XML Schema support: " + boolToStr(withSchemas) + "\n";
Daniel Veillard5fe95a82005-07-31 14:05:18 +0000697txtOut += "Schematron support: " + boolToStr(withSchematron) + "\n";
Igor Zlatkovic853514f2002-11-22 21:41:09 +0000698txtOut += " Python bindings: " + boolToStr(withPython) + "\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000699txtOut += "\n";
700txtOut += "Win32 build configuration\n";
701txtOut += "-------------------------\n";
Igor Zlatkovicbd1a3062002-11-14 17:43:24 +0000702txtOut += " Compiler: " + compiler + "\n";
Rob Richards90ee8df2007-06-08 19:47:37 +0000703if (compiler == "msvc") {
Igor Zlatkovic4f928212003-11-27 18:39:01 +0000704 txtOut += " C-Runtime option: " + cruntime + "\n";
Rob Richards90ee8df2007-06-08 19:47:37 +0000705 txtOut += " Embed Manifest: " + boolToStr(vcmanifest) + "\n";
706} else if (compiler == "bcb")
Igor Zlatkovicc7646e62003-12-01 11:33:27 +0000707 txtOut += " Use dynamic RTL: " + dynruntime + "\n";
Igor Zlatkovicac97f6e2002-03-24 21:00:26 +0000708txtOut += " Debug symbols: " + boolToStr(buildDebug) + "\n";
709txtOut += " Static xmllint: " + boolToStr(buildStatic) + "\n";
710txtOut += " Install prefix: " + buildPrefix + "\n";
711txtOut += " Put tools in: " + buildBinPrefix + "\n";
712txtOut += " Put headers in: " + buildIncPrefix + "\n";
713txtOut += "Put static libs in: " + buildLibPrefix + "\n";
714txtOut += "Put shared libs in: " + buildSoPrefix + "\n";
715txtOut += " Include path: " + buildInclude + "\n";
716txtOut += " Lib path: " + buildLib + "\n";
717WScript.Echo(txtOut);
718
William M. Brack6d13f332003-08-08 16:40:36 +0000719//
720