, where the value is\n";
- txt += "either 'yes' or 'no', if not stated otherwise.\n\n";
- txt += "\nXML processor options, default value given in parentheses:\n\n";
- txt += " trio: Enable TRIO string manipulator (" + (withTrio? "yes" : "no") + ")\n";
- txt += " threads: Enable thread safety [no|ctls|native|posix] (" + (withThreads) + ") \n";
- txt += " ftp: Enable FTP client (" + (withFtp? "yes" : "no") + ")\n";
- txt += " http: Enable HTTP client (" + (withHttp? "yes" : "no") + ")\n";
- txt += " html: Enable HTML processor (" + (withHtml? "yes" : "no") + ")\n";
- txt += " c14n: Enable C14N support (" + (withC14n? "yes" : "no") + ")\n";
- txt += " catalog: Enable catalog support (" + (withCatalog? "yes" : "no") + ")\n";
- txt += " docb: Enable DocBook support (" + (withDocb? "yes" : "no") + ")\n";
- txt += " xpath: Enable XPath support (" + (withXpath? "yes" : "no") + ")\n";
- txt += " xptr: Enable XPointer support (" + (withXptr? "yes" : "no") + ")\n";
- txt += " xinclude: Enable XInclude support (" + (withXinclude? "yes" : "no") + ")\n";
- txt += " iconv: Enable iconv support (" + (withIconv? "yes" : "no") + ")\n";
- txt += " iso8859x: Enable ISO8859X support (" + (withIso8859x? "yes" : "no") + ")\n";
- txt += " zlib: Enable zlib support (" + (withZlib? "yes" : "no") + ")\n";
- txt += " xml_debug: Enable XML debbugging module (" + (withDebug? "yes" : "no") + ")\n";
- txt += " mem_debug: Enable memory debugger (" + (withMemDebug? "yes" : "no") + ")\n";
- txt += " regexps: Enable regular expressions (" + (withRegExps? "yes" : "no") + ")\n";
- txt += " modules: Enable module support (" + (withModules? "yes" : "no") + ")\n";
- txt += " tree: Enable tree api (" + (withTree? "yes" : "no") + ")\n";
- txt += " reader: Enable xmlReader api (" + (withReader? "yes" : "no") + ")\n";
- txt += " writer: Enable xmlWriter api (" + (withWriter? "yes" : "no") + ")\n";
- txt += " walker: Enable xmlDocWalker api (" + (withWalker? "yes" : "no") + ")\n";
- txt += " pattern: Enable xmlPattern api (" + (withPattern? "yes" : "no") + ")\n";
- txt += " push: Enable push api (" + (withPush? "yes" : "no") + ")\n";
- txt += " valid: Enable DTD validation support (" + (withValid? "yes" : "no") + ")\n";
- txt += " sax1: Enable SAX1 api (" + (withSax1? "yes" : "no") + ")\n";
- txt += " legacy: Enable Deprecated api's (" + (withLegacy? "yes" : "no") + ")\n";
- txt += " output: Enable serialization support (" + (withOutput? "yes" : "no") + ")\n";
- txt += " schemas: Enable XML Schema support (" + (withSchemas? "yes" : "no") + ")\n";
- txt += " python: Build Python bindings (" + (withPython? "yes" : "no") + ")\n";
- txt += "\nWin32 build options, default value given in parentheses:\n\n";
- txt += " compiler: Compiler to be used [msvc|mingw|bcb] (" + compiler + ")\n";
- txt += " cruntime: C-runtime compiler option (only msvc) (" + cruntime + ")\n";
- txt += " dynruntime: Use the dynamic RTL (only bcb) (" + dynruntime + ")\n";
- txt += " debug: Build unoptimised debug executables (" + (buildDebug? "yes" : "no") + ")\n";
- txt += " static: Link xmllint statically to libxml2 (" + (buildStatic? "yes" : "no") + ")\n";
- txt += " Note: automatically enabled if cruntime is not /MD or /MDd\n";
- txt += " prefix: Base directory for the installation (" + buildPrefix + ")\n";
- txt += " bindir: Directory where xmllint and friends should be installed\n";
- txt += " (" + buildBinPrefix + ")\n";
- txt += " incdir: Directory where headers should be installed\n";
- txt += " (" + buildIncPrefix + ")\n";
- txt += " libdir: Directory where static and import libraries should be\n";
- txt += " installed (" + buildLibPrefix + ")\n";
- txt += " sodir: Directory where shared libraries should be installed\n";
- txt += " (" + buildSoPrefix + ")\n";
- txt += " include: Additional search path for the compiler, particularily\n";
- txt += " where iconv headers can be found (" + buildInclude + ")\n";
- txt += " lib: Additional search path for the linker, particularily\n";
- txt += " where iconv library can be found (" + buildLib + ")\n";
- WScript.Echo(txt);
-}
-
-/* Discovers the version we are working with by reading the apropriate
- configuration file. Despite its name, this also writes the configuration
- file included by our makefile. */
-function discoverVersion()
-{
- var fso, cf, vf, ln, s, iDot, iSlash;
- fso = new ActiveXObject("Scripting.FileSystemObject");
- verCvs = "";
- if (useCvsVer && fso.FileExists("..\\CVS\\Entries")) {
- cf = fso.OpenTextFile("..\\CVS\\Entries", 1);
- while (cf.AtEndOfStream != true) {
- ln = cf.ReadLine();
- s = new String(ln);
- if (s.search(/^\/ChangeLog\//) != -1) {
- iDot = s.indexOf(".");
- iSlash = s.indexOf("/", iDot);
- verCvs = "CVS" + s.substring(iDot + 1, iSlash);
- break;
- }
- }
- cf.Close();
- }
- cf = fso.OpenTextFile(configFile, 1);
- if (compiler == "msvc")
- versionFile = ".\\config.msvc";
- else if (compiler == "mingw")
- versionFile = ".\\config.mingw";
- else if (compiler == "bcb")
- versionFile = ".\\config.bcb";
- vf = fso.CreateTextFile(versionFile, true);
- vf.WriteLine("# " + versionFile);
- vf.WriteLine("# This file is generated automatically by " + WScript.ScriptName + ".");
- vf.WriteBlankLines(1);
- while (cf.AtEndOfStream != true) {
- ln = cf.ReadLine();
- s = new String(ln);
- if (s.search(/^LIBXML_MAJOR_VERSION=/) != -1) {
- vf.WriteLine(s);
- verMajor = s.substring(s.indexOf("=") + 1, s.length)
- } else if(s.search(/^LIBXML_MINOR_VERSION=/) != -1) {
- vf.WriteLine(s);
- verMinor = s.substring(s.indexOf("=") + 1, s.length)
- } else if(s.search(/^LIBXML_MICRO_VERSION=/) != -1) {
- vf.WriteLine(s);
- verMicro = s.substring(s.indexOf("=") + 1, s.length)
- } else if(s.search(/^LIBXML_MICRO_VERSION_SUFFIX=/) != -1) {
- vf.WriteLine(s);
- verMicroSuffix = s.substring(s.indexOf("=") + 1, s.length)
- }
- }
- cf.Close();
- vf.WriteLine("XML_SRCDIR=" + srcDirXml);
- vf.WriteLine("UTILS_SRCDIR=" + srcDirUtils);
- vf.WriteLine("WITH_TRIO=" + (withTrio? "1" : "0"));
- vf.WriteLine("WITH_THREADS=" + withThreads);
- vf.WriteLine("WITH_FTP=" + (withFtp? "1" : "0"));
- vf.WriteLine("WITH_HTTP=" + (withHttp? "1" : "0"));
- vf.WriteLine("WITH_HTML=" + (withHtml? "1" : "0"));
- vf.WriteLine("WITH_C14N=" + (withC14n? "1" : "0"));
- vf.WriteLine("WITH_CATALOG=" + (withCatalog? "1" : "0"));
- vf.WriteLine("WITH_DOCB=" + (withDocb? "1" : "0"));
- vf.WriteLine("WITH_XPATH=" + (withXpath? "1" : "0"));
- vf.WriteLine("WITH_XPTR=" + (withXptr? "1" : "0"));
- vf.WriteLine("WITH_XINCLUDE=" + (withXinclude? "1" : "0"));
- vf.WriteLine("WITH_ICONV=" + (withIconv? "1" : "0"));
- vf.WriteLine("WITH_ISO8859X=" + (withIso8859x? "1" : "0"));
- vf.WriteLine("WITH_ZLIB=" + (withZlib? "1" : "0"));
- vf.WriteLine("WITH_DEBUG=" + (withDebug? "1" : "0"));
- vf.WriteLine("WITH_MEM_DEBUG=" + (withMemDebug? "1" : "0"));
- vf.WriteLine("WITH_SCHEMAS=" + (withSchemas? "1" : "0"));
- vf.WriteLine("WITH_REGEXPS=" + (withRegExps? "1" : "0"));
- vf.WriteLine("WITH_MODULES=" + (withModules? "1" : "0"));
- vf.WriteLine("WITH_TREE=" + (withTree? "1" : "0"));
- vf.WriteLine("WITH_READER=" + (withReader? "1" : "0"));
- vf.WriteLine("WITH_WRITER=" + (withWriter? "1" : "0"));
- vf.WriteLine("WITH_WALKER=" + (withWalker? "1" : "0"));
- vf.WriteLine("WITH_PATTERN=" + (withPattern? "1" : "0"));
- vf.WriteLine("WITH_PUSH=" + (withPush? "1" : "0"));
- vf.WriteLine("WITH_VALID=" + (withValid? "1" : "0"));
- vf.WriteLine("WITH_SAX1=" + (withSax1? "1" : "0"));
- vf.WriteLine("WITH_LEGACY=" + (withLegacy? "1" : "0"));
- vf.WriteLine("WITH_OUTPUT=" + (withOutput? "1" : "0"));
- vf.WriteLine("WITH_PYTHON=" + (withPython? "1" : "0"));
- vf.WriteLine("DEBUG=" + (buildDebug? "1" : "0"));
- vf.WriteLine("STATIC=" + (buildStatic? "1" : "0"));
- vf.WriteLine("PREFIX=" + buildPrefix);
- vf.WriteLine("BINPREFIX=" + buildBinPrefix);
- vf.WriteLine("INCPREFIX=" + buildIncPrefix);
- vf.WriteLine("LIBPREFIX=" + buildLibPrefix);
- vf.WriteLine("SOPREFIX=" + buildSoPrefix);
- if (compiler == "msvc") {
- vf.WriteLine("INCLUDE=$(INCLUDE);" + buildInclude);
- vf.WriteLine("LIB=$(LIB);" + buildLib);
- vf.WriteLine("CRUNTIME=" + cruntime);
- } else if (compiler == "mingw") {
- vf.WriteLine("INCLUDE+=;" + buildInclude);
- vf.WriteLine("LIB+=;" + buildLib);
- } else if (compiler == "bcb") {
- vf.WriteLine("INCLUDE=" + buildInclude);
- vf.WriteLine("LIB=" + buildLib);
- vf.WriteLine("DYNRUNTIME=" + (dynruntime? "1" : "0"));
- }
- vf.Close();
-}
-
-/* Configures libxml. This one will generate xmlversion.h from xmlversion.h.in
- taking what the user passed on the command line into account. */
-function configureLibxml()
-{
- var fso, ofi, of, ln, s;
- fso = new ActiveXObject("Scripting.FileSystemObject");
- ofi = fso.OpenTextFile(optsFileIn, 1);
- of = fso.CreateTextFile(optsFile, true);
- while (ofi.AtEndOfStream != true) {
- ln = ofi.ReadLine();
- s = new String(ln);
- if (s.search(/\@VERSION\@/) != -1) {
- of.WriteLine(s.replace(/\@VERSION\@/,
- verMajor + "." + verMinor + "." + verMicro + verMicroSuffix));
- } else if (s.search(/\@LIBXML_VERSION_NUMBER\@/) != -1) {
- of.WriteLine(s.replace(/\@LIBXML_VERSION_NUMBER\@/,
- verMajor*10000 + verMinor*100 + verMicro*1));
- } else if (s.search(/\@LIBXML_VERSION_EXTRA\@/) != -1) {
- of.WriteLine(s.replace(/\@LIBXML_VERSION_EXTRA\@/, verCvs));
- } else if (s.search(/\@WITH_TRIO\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_TRIO\@/, withTrio? "1" : "0"));
- } else if (s.search(/\@WITH_THREADS\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
- } else if (s.search(/\@WITH_FTP\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_FTP\@/, withFtp? "1" : "0"));
- } else if (s.search(/\@WITH_HTTP\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_HTTP\@/, withHttp? "1" : "0"));
- } else if (s.search(/\@WITH_HTML\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_HTML\@/, withHtml? "1" : "0"));
- } else if (s.search(/\@WITH_C14N\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_C14N\@/, withC14n? "1" : "0"));
- } else if (s.search(/\@WITH_CATALOG\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_CATALOG\@/, withCatalog? "1" : "0"));
- } else if (s.search(/\@WITH_DOCB\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_DOCB\@/, withDocb? "1" : "0"));
- } else if (s.search(/\@WITH_XPATH\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_XPATH\@/, withXpath? "1" : "0"));
- } else if (s.search(/\@WITH_XPTR\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_XPTR\@/, withXptr? "1" : "0"));
- } else if (s.search(/\@WITH_XINCLUDE\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_XINCLUDE\@/, withXinclude? "1" : "0"));
- } else if (s.search(/\@WITH_ICONV\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_ICONV\@/, withIconv? "1" : "0"));
- } else if (s.search(/\@WITH_ISO8859X\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_ISO8859X\@/, withIso8859x? "1" : "0"));
- } else if (s.search(/\@WITH_ZLIB\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_ZLIB\@/, withZlib? "1" : "0"));
- } else if (s.search(/\@WITH_DEBUG\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_DEBUG\@/, withDebug? "1" : "0"));
- } else if (s.search(/\@WITH_MEM_DEBUG\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_MEM_DEBUG\@/, withMemDebug? "1" : "0"));
- } else if (s.search(/\@WITH_SCHEMAS\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_SCHEMAS\@/, withSchemas? "1" : "0"));
- } else if (s.search(/\@WITH_REGEXPS\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_REGEXPS\@/, withRegExps? "1" : "0"));
- } else if (s.search(/\@WITH_MODULES\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_MODULES\@/, withModules? "1" : "0"));
- } else if (s.search(/\@MODULE_EXTENSION\@/) != -1) {
- of.WriteLine(s.replace(/\@MODULE_EXTENSION\@/, ".dll"));
- } else if (s.search(/\@WITH_TREE\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_TREE\@/, withTree? "1" : "0"));
- } else if (s.search(/\@WITH_READER\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_READER\@/, withReader? "1" : "0"));
- } else if (s.search(/\@WITH_WRITER\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_WRITER\@/, withWriter? "1" : "0"));
- } else if (s.search(/\@WITH_WALKER\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_WALKER\@/, withWalker? "1" : "0"));
- } else if (s.search(/\@WITH_PATTERN\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_PATTERN\@/, withPattern? "1" : "0"));
- } else if (s.search(/\@WITH_PUSH\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_PUSH\@/, withPush? "1" : "0"));
- } else if (s.search(/\@WITH_VALID\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_VALID\@/, withValid? "1" : "0"));
- } else if (s.search(/\@WITH_SAX1\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_SAX1\@/, withSax1? "1" : "0"));
- } else if (s.search(/\@WITH_LEGACY\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_LEGACY\@/, withLegacy? "1" : "0"));
- } else if (s.search(/\@WITH_OUTPUT\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_OUTPUT\@/, withOutput? "1" : "0"));
- } else
- of.WriteLine(ln);
- }
- ofi.Close();
- of.Close();
-}
-/* Configures Python bindings. Otherwise identical to the above */
-function configureLibxmlPy()
-{
- var pyOptsFileIn = srcDirXml + "\\python\\setup.py.in";
- var pyOptsFile = srcDirXml + "\\python\\setup.py";
- var fso, ofi, of, ln, s;
- fso = new ActiveXObject("Scripting.FileSystemObject");
- ofi = fso.OpenTextFile(pyOptsFileIn, 1);
- of = fso.CreateTextFile(pyOptsFile, true);
- while (ofi.AtEndOfStream != true) {
- ln = ofi.ReadLine();
- s = new String(ln);
- if (s.search(/\@LIBXML_VERSION\@/) != -1) {
- of.WriteLine(s.replace(/\@LIBXML_VERSION\@/,
- verMajor + "." + verMinor + "." + verMicro));
- } else if (s.search(/\@prefix\@/) != -1) {
- of.WriteLine(s.replace(/\@prefix\@/, buildPrefix));
- } else if (s.search(/\@WITH_THREADS\@/) != -1) {
- of.WriteLine(s.replace(/\@WITH_THREADS\@/, withThreads == "no"? "0" : "1"));
- } else
- of.WriteLine(ln);
- }
- ofi.Close();
- of.Close();
-}
-
-/* Creates the readme file for the binary distribution of 'bname', for the
- version 'ver' in the file 'file'. This one is called from the Makefile when
- generating a binary distribution. The parameters are passed by make. */
-function genReadme(bname, ver, file)
-{
- var fso, f;
- fso = new ActiveXObject("Scripting.FileSystemObject");
- f = fso.CreateTextFile(file, true);
- f.WriteLine(" " + bname + " " + ver);
- f.WriteLine(" --------------");
- f.WriteBlankLines(1);
- f.WriteLine(" This is " + bname + ", version " + ver + ", binary package for the native Win32/IA32");
- f.WriteLine("platform.");
- f.WriteBlankLines(1);
- f.WriteLine(" The files in this package do not require any special installation");
- f.WriteLine("steps. Extract the contents of the archive whereever you wish and");
- f.WriteLine("make sure that your tools which use " + bname + " can find it.");
- f.WriteBlankLines(1);
- f.WriteLine(" For example, if you want to run the supplied utilities from the command");
- f.WriteLine("line, you can, if you wish, add the 'bin' subdirectory to the PATH");
- f.WriteLine("environment variable.");
- f.WriteLine(" If you want to make programmes in C which use " + bname + ", you'll");
- f.WriteLine("likely know how to use the contents of this package. If you don't, please");
- f.WriteLine("refer to your compiler's documentation.");
- f.WriteBlankLines(1);
- f.WriteLine(" If there is something you cannot keep for yourself, such as a problem,");
- f.WriteLine("a cheer of joy, a comment or a suggestion, feel free to contact me using");
- f.WriteLine("the address below.");
- f.WriteBlankLines(1);
- f.WriteLine(" Igor Zlatkovic (igor@zlatkovic.com)");
- f.Close();
-}
-
-
-/*
- * main(),
- * Execution begins here.
- */
-
-// Parse the command-line arguments.
-for (i = 0; (i < WScript.Arguments.length) && (error == 0); i++) {
- var arg, opt;
- arg = WScript.Arguments(i);
- opt = arg.substring(0, arg.indexOf("="));
- if (opt.length == 0)
- opt = arg.substring(0, arg.indexOf(":"));
- if (opt.length > 0) {
- if (opt == "trio")
- withTrio = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "threads")
- withThreads = arg.substring(opt.length + 1, arg.length);
- else if (opt == "ftp")
- withFtp = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "http")
- withHttp = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "html")
- withHtml = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "c14n")
- withC14n = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "catalog")
- withCatalog = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "docb")
- withDocb = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "xpath")
- withXpath = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "xptr")
- withXptr = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "xinclude")
- withXinclude = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "iconv")
- withIconv = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "iso8859x")
- withIso8859x = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "zlib")
- withZlib = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "xml_debug")
- withDebug = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "mem_debug")
- withMemDebug = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "schemas")
- withSchemas = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "regexps")
- withRegExps = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "tree")
- withTree = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "reader")
- withReader = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "writer")
- withWriter = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "walker")
- withWalker = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "pattern")
- withPattern = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "push")
- withPush = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "valid")
- withValid = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "sax1")
- withSax1 = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "legacy")
- withLegacy = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "output")
- withOutput = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "python")
- withPython = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "compiler")
- compiler = arg.substring(opt.length + 1, arg.length);
- else if (opt == "cruntime")
- cruntime = arg.substring(opt.length + 1, arg.length);
- else if (opt == "dynruntime")
- dynruntime = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "debug")
- buildDebug = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "static")
- buildStatic = strToBool(arg.substring(opt.length + 1, arg.length));
- else if (opt == "prefix")
- buildPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "incdir")
- buildIncPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "bindir")
- buildBinPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "libdir")
- buildLibPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "sodir")
- buildSoPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "incdir")
- buildIncPrefix = arg.substring(opt.length + 1, arg.length);
- else if (opt == "include")
- buildInclude = arg.substring(opt.length + 1, arg.length);
- else if (opt == "lib")
- buildLib = arg.substring(opt.length + 1, arg.length);
- else if (opt == "release")
- useCvsVer = false;
- else
- error = 1;
- } else if (i == 0) {
- if (arg == "genreadme") {
- // This command comes from the Makefile and will not be checked
- // for errors, because Makefile will always supply right the parameters.
- genReadme(WScript.Arguments(1), WScript.Arguments(2), WScript.Arguments(3));
- WScript.Quit(0);
- } else if (arg == "help") {
- usage();
- WScript.Quit(0);
- }
-
- } else {
- error = 1;
- }
-}
-
-
-// If we fail here, it is because the user supplied an unrecognised argument.
-if (error != 0) {
- usage();
- WScript.Quit(error);
-}
-
-// if user choses to link the c-runtime library statically into libxml2
-// with /MT and friends, then we need to enable static linking for xmllint
-if (cruntime == "/MT" || cruntime == "/MTd" ||
- cruntime == "/ML" || cruntime == "/MLd") {
- buildStatic = 1;
-}
-
-dirSep = "\\";
-if (compiler == "mingw")
- dirSep = "/";
-if (buildBinPrefix == "")
- buildBinPrefix = "$(PREFIX)" + dirSep + "bin";
-if (buildIncPrefix == "")
- buildIncPrefix = "$(PREFIX)" + dirSep + "include";
-if (buildLibPrefix == "")
- buildLibPrefix = "$(PREFIX)" + dirSep + "lib";
-if (buildSoPrefix == "")
- buildSoPrefix = "$(PREFIX)" + dirSep + "lib";
-
-// Discover the version.
-discoverVersion();
-if (error != 0) {
- WScript.Echo("Version discovery failed, aborting.");
- WScript.Quit(error);
-}
-
-var outVerString = baseName + " version: " + verMajor + "." + verMinor + "." + verMicro;
-if (verMicroSuffix && verMicroSuffix != "")
- outVerString += "-" + verMicroSuffix;
-if (verCvs && verCvs != "")
- outVerString += "-" + verCvs;
-WScript.Echo(outVerString);
-
-// Configure libxml.
-configureLibxml();
-if (error != 0) {
- WScript.Echo("Configuration failed, aborting.");
- WScript.Quit(error);
-}
-
-if (withPython == true) {
- configureLibxmlPy();
- if (error != 0) {
- WScript.Echo("Configuration failed, aborting.");
- WScript.Quit(error);
- }
-
-}
-
-// Create the makefile.
-var fso = new ActiveXObject("Scripting.FileSystemObject");
-var makefile = ".\\Makefile.msvc";
-if (compiler == "mingw")
- makefile = ".\\Makefile.mingw";
-else if (compiler == "bcb")
- makefile = ".\\Makefile.bcb";
-fso.CopyFile(makefile, ".\\Makefile", true);
-WScript.Echo("Created Makefile.");
-// Create the config.h.
-var confighsrc = "..\\include\\win32config.h";
-var configh = "..\\config.h";
-var f = fso.FileExists(configh);
-if (f) {
- var t = fso.GetFile(configh);
- t.Attributes =0;
-}
-fso.CopyFile(confighsrc, configh, true);
-WScript.Echo("Created config.h.");
-
-
-// Display the final configuration.
-var txtOut = "\nXML processor configuration\n";
-txtOut += "---------------------------\n";
-txtOut += " Trio: " + boolToStr(withTrio) + "\n";
-txtOut += " Thread safety: " + withThreads + "\n";
-txtOut += " FTP client: " + boolToStr(withFtp) + "\n";
-txtOut += " HTTP client: " + boolToStr(withHttp) + "\n";
-txtOut += " HTML processor: " + boolToStr(withHtml) + "\n";
-txtOut += " C14N support: " + boolToStr(withC14n) + "\n";
-txtOut += " Catalog support: " + boolToStr(withCatalog) + "\n";
-txtOut += " DocBook support: " + boolToStr(withDocb) + "\n";
-txtOut += " XPath support: " + boolToStr(withXpath) + "\n";
-txtOut += " XPointer support: " + boolToStr(withXptr) + "\n";
-txtOut += " XInclude support: " + boolToStr(withXinclude) + "\n";
-txtOut += " iconv support: " + boolToStr(withIconv) + "\n";
-txtOut += " iso8859x support: " + boolToStr(withIso8859x) + "\n";
-txtOut += " zlib support: " + boolToStr(withZlib) + "\n";
-txtOut += " Debugging module: " + boolToStr(withDebug) + "\n";
-txtOut += " Memory debugging: " + boolToStr(withMemDebug) + "\n";
-txtOut += " Regexp support: " + boolToStr(withRegExps) + "\n";
-txtOut += " Module support: " + boolToStr(withModules) + "\n";
-txtOut += " Tree support: " + boolToStr(withTree) + "\n";
-txtOut += " Reader support: " + boolToStr(withReader) + "\n";
-txtOut += " Writer support: " + boolToStr(withWriter) + "\n";
-txtOut += " Walker support: " + boolToStr(withWalker) + "\n";
-txtOut += " Pattern support: " + boolToStr(withPattern) + "\n";
-txtOut += " Push support: " + boolToStr(withPush) + "\n";
-txtOut += "Validation support: " + boolToStr(withValid) + "\n";
-txtOut += " SAX1 support: " + boolToStr(withSax1) + "\n";
-txtOut += " Legacy support: " + boolToStr(withLegacy) + "\n";
-txtOut += " Output support: " + boolToStr(withOutput) + "\n";
-txtOut += "XML Schema support: " + boolToStr(withSchemas) + "\n";
-txtOut += " Python bindings: " + boolToStr(withPython) + "\n";
-txtOut += "\n";
-txtOut += "Win32 build configuration\n";
-txtOut += "-------------------------\n";
-txtOut += " Compiler: " + compiler + "\n";
-if (compiler == "msvc")
- txtOut += " C-Runtime option: " + cruntime + "\n";
-else if (compiler == "bcb")
- txtOut += " Use dynamic RTL: " + dynruntime + "\n";
-txtOut += " Debug symbols: " + boolToStr(buildDebug) + "\n";
-txtOut += " Static xmllint: " + boolToStr(buildStatic) + "\n";
-txtOut += " Install prefix: " + buildPrefix + "\n";
-txtOut += " Put tools in: " + buildBinPrefix + "\n";
-txtOut += " Put headers in: " + buildIncPrefix + "\n";
-txtOut += "Put static libs in: " + buildLibPrefix + "\n";
-txtOut += "Put shared libs in: " + buildSoPrefix + "\n";
-txtOut += " Include path: " + buildInclude + "\n";
-txtOut += " Lib path: " + buildLib + "\n";
-WScript.Echo(txtOut);
-
-//
-
diff --git a/reactos/lib/3rdparty/libxml2/win32/defgen.xsl b/reactos/lib/3rdparty/libxml2/win32/defgen.xsl
deleted file mode 100644
index a598ff19e5d..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/defgen.xsl
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
- ]>
-
-
-
-
- #define LIBXML2_COMPILING_MSCCDEF&nl;
- #include "../include/libxml/xmlversion.h"&nl;
- LIBRARY libxml2&nl;
- EXPORTS&nl;
-
-
-
- #ifdef LIBXML_C14N_ENABLED&nl;
-
-
- #ifdef LIBXML_CATALOG_ENABLED&nl;
-
-
- #ifdef LIBXML_DEBUG_ENABLED&nl;
-
-
- #ifdef LIBXML_DOCB_ENABLED&nl;
-
-
- #ifdef LIBXML_HTML_ENABLED&nl;
-
-
- #ifdef LIBXML_HTTP_ENABLED&nl;
-
-
- #ifdef LIBXML_FTP_ENABLED&nl;
-
-
- #ifdef LIBXML_SCHEMAS_ENABLED&nl;
-
-
- #ifdef LIBXML_XINCLUDE_ENABLED&nl;
-
-
- #ifdef LIBXML_XLINK_ENABLED&nl;
-
-
- #ifdef LIBXML_AUTOMATA_ENABLED&nl;
-
-
- #ifdef LIBXML_REGEXP_ENABLED&nl;
-
-
- #ifdef LIBXML_XPATH_ENABLED&nl;
-
-
- #ifdef LIBXML_XPTR_ENABLED&nl;
-
-
-
- #ifdef LIBXML_HTML_ENABLED&nl;
-
-
- #ifdef LIBXML_DOCB_ENABLED&nl;
-
-
- #ifdef LIBXML_REGEXP_ENABLED&nl;
-
-
- #ifdef LIBXML_FTP_ENABLED&nl;
-
-
- #ifdef LIBXML_SCHEMAS_ENABLED&nl;
-
-
- #ifdef LIBXML_DEBUG_ENABLED&nl;
-
-
- #ifdef DEBUG_MEMORY_LOCATION&nl;
-
-
-
-
- #ifdef LIBXML_THREAD_ALLOC_ENABLED&nl;
- __
-
- &nl;
- #else&nl;
-
- DATA&nl;
- #endif&nl;
-
-
- #ifdef LIBXML_THREAD_ENABLED&nl;
-
- #ifdef LIBXML_DOCB_ENABLED&nl;
-
-
- #ifdef LIBXML_HTML_ENABLED&nl;
-
- __
-
- &nl;
-
- #endif&nl;
-
-
- #endif&nl;
-
- #else&nl;
-
- #ifdef LIBXML_DOCB_ENABLED&nl;
-
-
- #ifdef LIBXML_HTML_ENABLED&nl;
-
-
- DATA&nl;
-
- #endif&nl;
-
-
- #endif&nl;
-
- #endif&nl;
-
-
-
-
- DATA
-
- &nl;
-
-
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
- #endif&nl;
-
-
-
-
-
diff --git a/reactos/lib/3rdparty/libxml2/win32/libxml2.def.src b/reactos/lib/3rdparty/libxml2/win32/libxml2.def.src
deleted file mode 100644
index a0eb5457a85..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/libxml2.def.src
+++ /dev/null
@@ -1,3024 +0,0 @@
-#define LIBXML2_COMPILING_MSCCDEF
-#include "../include/libxml/xmlversion.h"
-LIBRARY libxml2
-EXPORTS
-#ifdef LIBXML_THREAD_ENABLED
-#ifdef LIBXML_DOCB_ENABLED
-__docbDefaultSAXHandler
-#endif
-#else
-#ifdef LIBXML_DOCB_ENABLED
-docbDefaultSAXHandler DATA
-#endif
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-#ifdef LIBXML_HTML_ENABLED
-__htmlDefaultSAXHandler
-#endif
-#else
-#ifdef LIBXML_HTML_ENABLED
-htmlDefaultSAXHandler DATA
-#endif
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__oldXMLWDcompatibility
-#else
-oldXMLWDcompatibility DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlBufferAllocScheme
-#else
-xmlBufferAllocScheme DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlDefaultBufferSize
-#else
-xmlDefaultBufferSize DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlDefaultSAXHandler
-#else
-xmlDefaultSAXHandler DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlDefaultSAXLocator
-#else
-xmlDefaultSAXLocator DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlDeregisterNodeDefaultValue
-#else
-xmlDeregisterNodeDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlDoValidityCheckingDefaultValue
-#else
-xmlDoValidityCheckingDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ALLOC_ENABLED
-__xmlFree
-#else
-xmlFree DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlGenericError
-#else
-xmlGenericError DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlGenericErrorContext
-#else
-xmlGenericErrorContext DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlGetWarningsDefaultValue
-#else
-xmlGetWarningsDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlIndentTreeOutput
-#else
-xmlIndentTreeOutput DATA
-#endif
-xmlIsBaseCharGroup DATA
-xmlIsCharGroup DATA
-xmlIsCombiningGroup DATA
-xmlIsDigitGroup DATA
-xmlIsExtenderGroup DATA
-xmlIsIdeographicGroup DATA
-xmlIsPubidChar_tab DATA
-#ifdef LIBXML_THREAD_ENABLED
-__xmlKeepBlanksDefaultValue
-#else
-xmlKeepBlanksDefaultValue DATA
-#endif
-xmlLastError DATA
-#ifdef LIBXML_THREAD_ENABLED
-__xmlLineNumbersDefaultValue
-#else
-xmlLineNumbersDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlLoadExtDtdDefaultValue
-#else
-xmlLoadExtDtdDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ALLOC_ENABLED
-__xmlMalloc
-#else
-xmlMalloc DATA
-#endif
-#ifdef LIBXML_THREAD_ALLOC_ENABLED
-__xmlMallocAtomic
-#else
-xmlMallocAtomic DATA
-#endif
-#ifdef LIBXML_THREAD_ALLOC_ENABLED
-__xmlMemStrdup
-#else
-xmlMemStrdup DATA
-#endif
-xmlOutputBufferCreateFilenameValue DATA
-#ifdef LIBXML_THREAD_ENABLED
-__xmlParserDebugEntities
-#else
-xmlParserDebugEntities DATA
-#endif
-xmlParserInputBufferCreateFilenameValue DATA
-xmlParserMaxDepth DATA
-#ifdef LIBXML_THREAD_ENABLED
-__xmlParserVersion
-#else
-xmlParserVersion DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlPedanticParserDefaultValue
-#else
-xmlPedanticParserDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ALLOC_ENABLED
-__xmlRealloc
-#else
-xmlRealloc DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlRegisterNodeDefaultValue
-#else
-xmlRegisterNodeDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlSaveNoEmptyTags
-#else
-xmlSaveNoEmptyTags DATA
-#endif
-xmlStringComment DATA
-xmlStringText DATA
-xmlStringTextNoenc DATA
-xmlStructuredError DATA
-#ifdef LIBXML_THREAD_ENABLED
-__xmlSubstituteEntitiesDefaultValue
-#else
-xmlSubstituteEntitiesDefaultValue DATA
-#endif
-#ifdef LIBXML_THREAD_ENABLED
-__xmlTreeIndentString
-#else
-xmlTreeIndentString DATA
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNAN DATA
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNINF DATA
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPINF DATA
-#endif
-#ifdef LIBXML_HTML_ENABLED
-UTF8ToHtml
-#endif
-UTF8Toisolat1
-attribute
-attributeDecl
-cdataBlock
-characters
-checkNamespace
-comment
-#ifdef LIBXML_DOCB_ENABLED
-docbCreateFileParserCtxt
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbCreatePushParserCtxt
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbDefaultSAXHandlerInit
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbEncodeEntities
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbFreeParserCtxt
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbParseChunk
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbParseDoc
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbParseDocument
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbParseFile
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbSAXParseDoc
-#endif
-#ifdef LIBXML_DOCB_ENABLED
-docbSAXParseFile
-#endif
-elementDecl
-endDocument
-endElement
-entityDecl
-externalSubset
-getColumnNumber
-getEntity
-getLineNumber
-getNamespace
-getParameterEntity
-getPublicId
-getSystemId
-globalNamespace
-hasExternalSubset
-hasInternalSubset
-#ifdef LIBXML_HTML_ENABLED
-htmlAttrAllowed
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlAutoCloseTag
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCreateFileParserCtxt
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCreateMemoryParserCtxt
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCreatePushParserCtxt
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReadDoc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReadFd
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReadFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReadIO
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReadMemory
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtReset
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlCtxtUseOptions
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlDefaultSAXHandlerInit
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlDocContentDumpFormatOutput
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlDocContentDumpOutput
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlDocDump
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlDocDumpMemory
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlElementAllowedHere
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlElementStatusHere
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlEncodeEntities
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlEntityLookup
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlEntityValueLookup
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlFreeParserCtxt
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlGetMetaEncoding
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlHandleOmittedElem
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlInitAutoClose
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlIsAutoClosed
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlIsBooleanAttr
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlIsScriptAttribute
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNewDoc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNewDocNoDtD
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeDump
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeDumpFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeDumpFileFormat
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeDumpFormatOutput
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeDumpOutput
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlNodeStatus
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseCharRef
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseChunk
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseDoc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseDocument
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseElement
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseEntityRef
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlParseFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlReadDoc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlReadFd
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlReadFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlReadIO
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlReadMemory
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSAXParseDoc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSAXParseFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSaveFile
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSaveFileEnc
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSaveFileFormat
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlSetMetaEncoding
-#endif
-#ifdef LIBXML_HTML_ENABLED
-htmlTagLookup
-#endif
-ignorableWhitespace
-initGenericErrorDefaultFunc
-#ifdef LIBXML_DOCB_ENABLED
-initdocbDefaultSAXHandler
-#endif
-#ifdef LIBXML_HTML_ENABLED
-inithtmlDefaultSAXHandler
-#endif
-initxmlDefaultSAXHandler
-inputPop
-inputPush
-internalSubset
-isStandalone
-isolat1ToUTF8
-namePop
-namePush
-namespaceDecl
-nodePop
-nodePush
-notationDecl
-processingInstruction
-reference
-resolveEntity
-setDocumentLocator
-setNamespace
-startDocument
-startElement
-unparsedEntityDecl
-#ifdef LIBXML_XPATH_ENABLED
-valuePop
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-valuePush
-#endif
-#ifdef LIBXML_XLINK_ENABLED
-xlinkGetDefaultDetect
-#endif
-#ifdef LIBXML_XLINK_ENABLED
-xlinkGetDefaultHandler
-#endif
-#ifdef LIBXML_XLINK_ENABLED
-xlinkIsLink
-#endif
-#ifdef LIBXML_XLINK_ENABLED
-xlinkSetDefaultDetect
-#endif
-#ifdef LIBXML_XLINK_ENABLED
-xlinkSetDefaultHandler
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogAdd
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogDump
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogRemove
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogResolve
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogResolvePublic
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogResolveSystem
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlACatalogResolveURI
-#endif
-xmlAddAttributeDecl
-xmlAddChild
-xmlAddChildList
-xmlAddDocEntity
-xmlAddDtdEntity
-xmlAddElementDecl
-xmlAddEncodingAlias
-xmlAddID
-xmlAddNextSibling
-xmlAddNotationDecl
-xmlAddPrevSibling
-xmlAddRef
-xmlAddSibling
-xmlAllocOutputBuffer
-xmlAllocParserInputBuffer
-xmlAttrSerializeTxtContent
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataCompile
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataGetInitState
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataIsDeterminist
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewAllTrans
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewCountTrans
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewCountTrans2
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewCountedTrans
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewCounter
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewCounterTrans
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewEpsilon
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewOnceTrans
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewOnceTrans2
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewState
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewTransition
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataNewTransition2
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlAutomataSetFinalState
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlBoolToText
-#endif
-xmlBufferAdd
-xmlBufferAddHead
-xmlBufferCCat
-xmlBufferCat
-xmlBufferContent
-xmlBufferCreate
-xmlBufferCreateSize
-xmlBufferCreateStatic
-xmlBufferDump
-xmlBufferEmpty
-xmlBufferFree
-xmlBufferGrow
-xmlBufferLength
-xmlBufferResize
-xmlBufferSetAllocationScheme
-xmlBufferShrink
-xmlBufferWriteCHAR
-xmlBufferWriteChar
-xmlBufferWriteQuotedString
-xmlBuildQName
-xmlBuildRelativeURI
-xmlBuildURI
-xmlByteConsumed
-#ifdef LIBXML_C14N_ENABLED
-xmlC14NDocDumpMemory
-#endif
-#ifdef LIBXML_C14N_ENABLED
-xmlC14NDocSave
-#endif
-#ifdef LIBXML_C14N_ENABLED
-xmlC14NDocSaveTo
-#endif
-#ifdef LIBXML_C14N_ENABLED
-xmlC14NExecute
-#endif
-xmlCanonicPath
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogAdd
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogAddLocal
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogCleanup
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogConvert
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogDump
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogFreeLocal
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogGetDefaults
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogGetPublic
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogGetSystem
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogIsEmpty
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogLocalResolve
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogLocalResolveURI
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogRemove
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogResolve
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogResolvePublic
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogResolveSystem
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogResolveURI
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogSetDebug
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogSetDefaultPrefer
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlCatalogSetDefaults
-#endif
-xmlCharEncCloseFunc
-xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-xmlCharInRange
-xmlCharStrdup
-xmlCharStrndup
-xmlCheckFilename
-xmlCheckHTTPInput
-xmlCheckLanguageID
-xmlCheckUTF8
-xmlCheckVersion
-xmlCleanupCharEncodingHandlers
-xmlCleanupEncodingAliases
-xmlCleanupGlobals
-xmlCleanupInputCallbacks
-xmlCleanupMemory
-xmlCleanupOutputCallbacks
-xmlCleanupParser
-xmlCleanupPredefinedEntities
-xmlCleanupThreads
-xmlClearNodeInfoSeq
-xmlClearParserCtxt
-#ifdef LIBXML_CATALOG_ENABLED
-xmlConvertSGMLCatalog
-#endif
-xmlCopyAttributeTable
-xmlCopyChar
-xmlCopyCharMultiByte
-xmlCopyDoc
-xmlCopyDocElementContent
-xmlCopyDtd
-xmlCopyElementContent
-xmlCopyElementTable
-xmlCopyEntitiesTable
-xmlCopyEnumeration
-xmlCopyError
-xmlCopyNamespace
-xmlCopyNamespaceList
-xmlCopyNode
-xmlCopyNodeList
-xmlCopyNotationTable
-xmlCopyProp
-xmlCopyPropList
-xmlCreateDocParserCtxt
-xmlCreateEntitiesTable
-xmlCreateEntityParserCtxt
-xmlCreateEnumeration
-xmlCreateFileParserCtxt
-xmlCreateIOParserCtxt
-xmlCreateIntSubset
-xmlCreateMemoryParserCtxt
-xmlCreatePushParserCtxt
-xmlCreateURI
-xmlCreateURLParserCtxt
-xmlCtxtGetLastError
-xmlCtxtReadDoc
-xmlCtxtReadFd
-xmlCtxtReadFile
-xmlCtxtReadIO
-xmlCtxtReadMemory
-xmlCtxtReset
-xmlCtxtResetLastError
-xmlCtxtResetPush
-xmlCtxtUseOptions
-xmlCurrentChar
-xmlDOMWrapAdoptNode
-xmlDOMWrapFreeCtxt
-xmlDOMWrapNewCtxt
-xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugCheckDocument
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpAttr
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpAttrList
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpDTD
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpDocument
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpDocumentHead
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpEntities
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpNode
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpNodeList
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpOneNode
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlDebugDumpString
-#endif
-xmlDecodeEntities
-xmlDefaultSAXHandlerInit
-xmlDelEncodingAlias
-xmlDeregisterNodeDefault
-xmlDetectCharEncoding
-xmlDictCleanup
-xmlDictCreate
-xmlDictCreateSub
-xmlDictExists
-xmlDictFree
-xmlDictLookup
-xmlDictOwns
-xmlDictQLookup
-xmlDictReference
-xmlDictSize
-xmlDocCopyNode
-xmlDocCopyNodeList
-xmlDocDump
-xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocDumpMemory
-xmlDocDumpMemoryEnc
-xmlDocFormatDump
-xmlDocGetRootElement
-xmlDocSetRootElement
-xmlDumpAttributeDecl
-xmlDumpAttributeTable
-xmlDumpElementDecl
-xmlDumpElementTable
-xmlDumpEntitiesTable
-xmlDumpEntityDecl
-xmlDumpNotationDecl
-xmlDumpNotationTable
-xmlElemDump
-xmlEncodeEntities
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlErrMemory
-xmlFileClose
-xmlFileMatch
-xmlFileOpen
-xmlFileRead
-xmlFindCharEncodingHandler
-xmlFreeAttributeTable
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlFreeAutomata
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlFreeCatalog
-#endif
-xmlFreeDoc
-xmlFreeDocElementContent
-xmlFreeDtd
-xmlFreeElementContent
-xmlFreeElementTable
-xmlFreeEntitiesTable
-xmlFreeEnumeration
-xmlFreeIDTable
-xmlFreeInputStream
-xmlFreeMutex
-xmlFreeNode
-xmlFreeNodeList
-xmlFreeNotationTable
-xmlFreeNs
-xmlFreeNsList
-xmlFreeParserCtxt
-xmlFreeParserInputBuffer
-xmlFreePattern
-xmlFreePatternList
-xmlFreeProp
-xmlFreePropList
-xmlFreeRMutex
-xmlFreeRefTable
-xmlFreeStreamCtxt
-xmlFreeTextReader
-xmlFreeTextWriter
-xmlFreeURI
-xmlFreeValidCtxt
-xmlGcMemGet
-xmlGcMemSetup
-xmlGetBufferAllocationScheme
-xmlGetCharEncodingHandler
-xmlGetCharEncodingName
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlGetDocEntity
-xmlGetDtdAttrDesc
-xmlGetDtdElementDesc
-xmlGetDtdEntity
-xmlGetDtdNotationDesc
-xmlGetDtdQAttrDesc
-xmlGetDtdQElementDesc
-xmlGetEncodingAlias
-xmlGetExternalEntityLoader
-xmlGetFeature
-xmlGetFeaturesList
-xmlGetGlobalState
-xmlGetID
-xmlGetIntSubset
-xmlGetLastChild
-xmlGetLastError
-xmlGetLineNo
-xmlGetNoNsProp
-xmlGetNodePath
-xmlGetNsList
-xmlGetNsProp
-xmlGetParameterEntity
-xmlGetPredefinedEntity
-xmlGetProp
-xmlGetRefs
-xmlGetThreadId
-xmlGetUTF8Char
-xmlHandleEntity
-xmlHasNsProp
-xmlHasProp
-xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlHashCopy
-xmlHashCreate
-xmlHashCreateDict
-xmlHashFree
-xmlHashLookup
-xmlHashLookup2
-xmlHashLookup3
-xmlHashQLookup
-xmlHashQLookup2
-xmlHashQLookup3
-xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-xmlHashSize
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-#ifdef LIBXML_FTP_ENABLED
-xmlIOFTPClose
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlIOFTPMatch
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlIOFTPOpen
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlIOFTPRead
-#endif
-#ifdef LIBXML_HTML_ENABLED
-xmlIOHTTPClose
-#endif
-#ifdef LIBXML_HTML_ENABLED
-xmlIOHTTPMatch
-#endif
-#ifdef LIBXML_HTML_ENABLED
-xmlIOHTTPOpen
-#endif
-#ifdef LIBXML_HTML_ENABLED
-xmlIOHTTPOpenW
-#endif
-#ifdef LIBXML_HTML_ENABLED
-xmlIOHTTPRead
-#endif
-xmlIOParseDTD
-xmlInitCharEncodingHandlers
-xmlInitGlobals
-xmlInitMemory
-xmlInitNodeInfoSeq
-xmlInitParser
-xmlInitParserCtxt
-xmlInitThreads
-#ifdef LIBXML_CATALOG_ENABLED
-xmlInitializeCatalog
-#endif
-xmlInitializeGlobalState
-xmlInitializePredefinedEntities
-xmlIsBaseChar
-xmlIsBlank
-xmlIsBlankNode
-xmlIsChar
-xmlIsCombining
-xmlIsDigit
-xmlIsExtender
-xmlIsID
-xmlIsIdeographic
-xmlIsLetter
-xmlIsMainThread
-xmlIsMixedElement
-xmlIsPubidChar
-xmlIsRef
-#ifdef LIBXML_HTML_ENABLED
-xmlIsXHTML
-#endif
-xmlKeepBlanksDefault
-xmlLineNumbersDefault
-xmlLinkGetData
-xmlListAppend
-xmlListClear
-xmlListCopy
-xmlListCreate
-xmlListDelete
-xmlListDup
-xmlListEmpty
-xmlListEnd
-xmlListFront
-xmlListInsert
-xmlListMerge
-xmlListPopBack
-xmlListPopFront
-xmlListPushBack
-xmlListPushFront
-xmlListRemoveAll
-xmlListRemoveFirst
-xmlListRemoveLast
-xmlListReverse
-xmlListReverseSearch
-xmlListReverseWalk
-xmlListSearch
-xmlListSize
-xmlListSort
-xmlListWalk
-#ifdef LIBXML_CATALOG_ENABLED
-xmlLoadACatalog
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlLoadCatalog
-#endif
-#ifdef LIBXML_CATALOG_ENABLED
-xmlLoadCatalogs
-#endif
-xmlLoadExternalEntity
-#ifdef LIBXML_CATALOG_ENABLED
-xmlLoadSGMLSuperCatalog
-#endif
-xmlLockLibrary
-#ifdef LIBXML_DEBUG_ENABLED
-xmlLsCountNode
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlLsOneNode
-#endif
-#ifdef DEBUG_MEMORY_LOCATION
-xmlMallocAtomicLoc
-#endif
-#ifdef DEBUG_MEMORY_LOCATION
-xmlMallocLoc
-#endif
-xmlMemBlocks
-xmlMemDisplay
-xmlMemFree
-xmlMemGet
-xmlMemMalloc
-xmlMemRealloc
-xmlMemSetup
-xmlMemShow
-#ifdef DEBUG_MEMORY_LOCATION
-xmlMemStrdupLoc
-#endif
-xmlMemUsed
-xmlMemoryDump
-xmlMemoryStrdup
-xmlModuleClose
-xmlModuleFree
-xmlModuleOpen
-xmlModuleSymbol
-xmlMutexLock
-xmlMutexUnlock
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPCheckResponse
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPCleanup
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPClose
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPCloseConnection
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPConnect
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPConnectTo
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPCwd
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPDele
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPFreeCtxt
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPGet
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPGetConnection
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPGetResponse
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPGetSocket
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPInit
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPList
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPNewCtxt
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPOpen
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPProxy
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPQuit
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPRead
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPScanProxy
-#endif
-#ifdef LIBXML_FTP_ENABLED
-xmlNanoFTPUpdateURL
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPAuthHeader
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPCleanup
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPClose
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPContentLength
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPEncoding
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPFetch
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPInit
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPMethod
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPMethodRedir
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPMimeType
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPOpen
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPOpenRedir
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPRead
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPRedir
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPReturnCode
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPSave
-#endif
-#ifdef LIBXML_HTTP_ENABLED
-xmlNanoHTTPScanProxy
-#endif
-#ifdef LIBXML_AUTOMATA_ENABLED
-xmlNewAutomata
-#endif
-xmlNewCDataBlock
-#ifdef LIBXML_CATALOG_ENABLED
-xmlNewCatalog
-#endif
-xmlNewCharEncodingHandler
-xmlNewCharRef
-xmlNewChild
-xmlNewComment
-xmlNewDoc
-xmlNewDocComment
-xmlNewDocElementContent
-xmlNewDocFragment
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewDocPI
-xmlNewDocProp
-xmlNewDocRawNode
-xmlNewDocText
-xmlNewDocTextLen
-xmlNewDtd
-xmlNewElementContent
-xmlNewEntityInputStream
-xmlNewGlobalNs
-xmlNewIOInputStream
-xmlNewInputFromFile
-xmlNewInputStream
-xmlNewMutex
-xmlNewNode
-xmlNewNodeEatName
-xmlNewNs
-xmlNewNsProp
-xmlNewNsPropEatName
-xmlNewPI
-xmlNewParserCtxt
-xmlNewProp
-xmlNewRMutex
-xmlNewReference
-xmlNewStringInputStream
-xmlNewText
-xmlNewTextChild
-xmlNewTextLen
-xmlNewTextReader
-xmlNewTextReaderFilename
-xmlNewTextWriter
-xmlNewTextWriterDoc
-xmlNewTextWriterFilename
-xmlNewTextWriterMemory
-xmlNewTextWriterPushParser
-xmlNewTextWriterTree
-xmlNewValidCtxt
-xmlNextChar
-xmlNoNetExternalEntityLoader
-xmlNodeAddContent
-xmlNodeAddContentLen
-xmlNodeBufGetContent
-xmlNodeDump
-xmlNodeDumpOutput
-xmlNodeGetBase
-xmlNodeGetContent
-xmlNodeGetLang
-xmlNodeGetSpacePreserve
-xmlNodeIsText
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlNodeSetBase
-xmlNodeSetContent
-xmlNodeSetContentLen
-xmlNodeSetLang
-xmlNodeSetName
-xmlNodeSetSpacePreserve
-xmlNormalizeURIPath
-xmlNormalizeWindowsPath
-xmlOutputBufferClose
-xmlOutputBufferCreateFd
-xmlOutputBufferCreateFile
-xmlOutputBufferCreateFilename
-xmlOutputBufferCreateFilenameDefault
-xmlOutputBufferCreateIO
-xmlOutputBufferFlush
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlParseAttValue
-xmlParseAttribute
-xmlParseAttributeListDecl
-xmlParseAttributeType
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseCDSect
-#ifdef LIBXML_CATALOG_ENABLED
-xmlParseCatalogFile
-#endif
-xmlParseCharData
-xmlParseCharEncoding
-xmlParseCharRef
-xmlParseChunk
-xmlParseComment
-xmlParseContent
-xmlParseCtxtExternalEntity
-xmlParseDTD
-xmlParseDefaultDecl
-xmlParseDoc
-xmlParseDocTypeDecl
-xmlParseDocument
-xmlParseElement
-xmlParseElementChildrenContentDecl
-xmlParseElementContentDecl
-xmlParseElementDecl
-xmlParseElementMixedContentDecl
-xmlParseEncName
-xmlParseEncodingDecl
-xmlParseEndTag
-xmlParseEntity
-xmlParseEntityDecl
-xmlParseEntityRef
-xmlParseEntityValue
-xmlParseEnumeratedType
-xmlParseEnumerationType
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-xmlParseExternalID
-xmlParseExternalSubset
-xmlParseFile
-xmlParseInNodeContext
-xmlParseMarkupDecl
-xmlParseMemory
-xmlParseMisc
-xmlParseName
-xmlParseNamespace
-xmlParseNmtoken
-xmlParseNotationDecl
-xmlParseNotationType
-xmlParsePEReference
-xmlParsePI
-xmlParsePITarget
-xmlParsePubidLiteral
-xmlParseQuotedString
-xmlParseReference
-xmlParseSDDecl
-xmlParseStartTag
-xmlParseSystemLiteral
-xmlParseTextDecl
-xmlParseURI
-xmlParseURIReference
-xmlParseVersionInfo
-xmlParseVersionNum
-xmlParseXMLDecl
-xmlParserAddNodeInfo
-xmlParserError
-xmlParserFindNodeInfo
-xmlParserFindNodeInfoIndex
-xmlParserGetDirectory
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlParserInputBufferCreateFd
-xmlParserInputBufferCreateFile
-xmlParserInputBufferCreateFilename
-xmlParserInputBufferCreateFilenameDefault
-xmlParserInputBufferCreateIO
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-xmlParserInputBufferGrow
-xmlParserInputBufferPush
-xmlParserInputBufferRead
-xmlParserInputGrow
-xmlParserInputRead
-xmlParserInputShrink
-xmlParserPrintFileContext
-xmlParserPrintFileInfo
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-xmlPatternFromRoot
-xmlPatternGetStreamCtxt
-xmlPatternMatch
-xmlPatternMaxDepth
-xmlPatternStreamable
-xmlPatterncompile
-xmlPedanticParserDefault
-xmlPopInput
-xmlPopInputCallbacks
-xmlPrintURI
-xmlPushInput
-xmlRMutexLock
-xmlRMutexUnlock
-xmlReadDoc
-xmlReadFd
-xmlReadFile
-xmlReadIO
-xmlReadMemory
-xmlReaderForDoc
-xmlReaderForFd
-xmlReaderForFile
-xmlReaderForIO
-xmlReaderForMemory
-xmlReaderNewDoc
-xmlReaderNewFd
-xmlReaderNewFile
-xmlReaderNewIO
-xmlReaderNewMemory
-xmlReaderNewWalker
-xmlReaderWalker
-#ifdef DEBUG_MEMORY_LOCATION
-xmlReallocLoc
-#endif
-xmlReconciliateNs
-xmlRecoverDoc
-xmlRecoverFile
-xmlRecoverMemory
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegExecErrInfo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegExecNextValues
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegExecPushString
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegExecPushString2
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegFreeExecCtxt
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegFreeRegexp
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegNewExecCtxt
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegexpCompile
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegexpExec
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegexpIsDeterminist
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlRegexpPrint
-#endif
-xmlRegisterCharEncodingHandler
-xmlRegisterDefaultInputCallbacks
-xmlRegisterDefaultOutputCallbacks
-#ifdef LIBXML_HTML_ENABLED
-xmlRegisterHTTPPostCallbacks
-#endif
-xmlRegisterInputCallbacks
-xmlRegisterNodeDefault
-xmlRegisterOutputCallbacks
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGCleanupTypes
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGDump
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGDumpTree
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGFree
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGFreeParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGFreeValidCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGGetParserErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGGetValidErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGInitTypes
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGNewDocParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGNewMemParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGNewParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGNewValidCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGParse
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGSetParserErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGSetValidErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGValidateDoc
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGValidateFullElement
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGValidatePopElement
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGValidatePushCData
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxNGValidatePushElement
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlRelaxParserSetFlag
-#endif
-xmlRemoveID
-xmlRemoveProp
-xmlRemoveRef
-xmlReplaceNode
-xmlResetError
-xmlResetLastError
-xmlSAX2AttributeDecl
-xmlSAX2CDataBlock
-xmlSAX2Characters
-xmlSAX2Comment
-xmlSAX2ElementDecl
-xmlSAX2EndDocument
-xmlSAX2EndElement
-xmlSAX2EndElementNs
-xmlSAX2EntityDecl
-xmlSAX2ExternalSubset
-xmlSAX2GetColumnNumber
-xmlSAX2GetEntity
-xmlSAX2GetLineNumber
-xmlSAX2GetParameterEntity
-xmlSAX2GetPublicId
-xmlSAX2GetSystemId
-xmlSAX2HasExternalSubset
-xmlSAX2HasInternalSubset
-xmlSAX2IgnorableWhitespace
-xmlSAX2InitDefaultSAXHandler
-xmlSAX2InitDocbDefaultSAXHandler
-xmlSAX2InitHtmlDefaultSAXHandler
-xmlSAX2InternalSubset
-xmlSAX2IsStandalone
-xmlSAX2NotationDecl
-xmlSAX2ProcessingInstruction
-xmlSAX2Reference
-xmlSAX2ResolveEntity
-xmlSAX2SetDocumentLocator
-xmlSAX2StartDocument
-xmlSAX2StartElement
-xmlSAX2StartElementNs
-xmlSAX2UnparsedEntityDecl
-xmlSAXDefaultVersion
-xmlSAXParseDTD
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlSAXUserParseFile
-xmlSAXUserParseMemory
-xmlSAXVersion
-xmlSaveClose
-xmlSaveDoc
-xmlSaveFile
-xmlSaveFileEnc
-xmlSaveFileTo
-xmlSaveFlush
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-xmlSaveFormatFileTo
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
-xmlSaveToFd
-xmlSaveToFilename
-xmlSaveToIO
-xmlSaveTree
-xmlSaveUri
-xmlScanName
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCheckFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCleanupTypes
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCollapseString
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCompareValues
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCompareValuesWhtsp
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaCopyValue
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaDump
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaFree
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaFreeFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaFreeParserCtxt
-#endif
-xmlSchemaFreeType
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaFreeValidCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaFreeValue
-#endif
-xmlSchemaFreeWildcard
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetBuiltInListSimpleTypeItemType
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetBuiltInType
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetCanonValue
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetCanonValueWhtsp
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetFacetValueAsULong
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetParserErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetPredefinedType
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetValType
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaGetValidErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaInitTypes
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaIsBuiltInTypeFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewDocParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewMemParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewNOTATIONValue
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewParserCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewQNameValue
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewStringValue
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaNewValidCtxt
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaParse
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaSetParserErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaSetValidErrors
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaSetValidOptions
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValPredefTypeNode
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValPredefTypeNodeNoNorm
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidCtxtGetOptions
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateDoc
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateFacetWhtsp
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateFile
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateLengthFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateLengthFacetWhtsp
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateListSimpleTypeFacet
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateOneElement
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidatePredefinedType
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValidateStream
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValueAppend
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValueGetAsBoolean
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValueGetAsString
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaValueGetNext
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlSchemaWhiteSpaceReplace
-#endif
-xmlSearchNs
-xmlSearchNsByHref
-xmlSetBufferAllocationScheme
-xmlSetCompressMode
-xmlSetDocCompressMode
-xmlSetEntityReferenceFunc
-xmlSetExternalEntityLoader
-xmlSetFeature
-xmlSetGenericErrorFunc
-xmlSetListDoc
-xmlSetNs
-xmlSetNsProp
-xmlSetProp
-xmlSetStructuredErrorFunc
-xmlSetTreeDoc
-xmlSetupParserForBuffer
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShell
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellBase
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellCat
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellDir
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellDu
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellList
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellLoad
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellPrintNode
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellPrintXPathError
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellPrintXPathResult
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellPwd
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellSave
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellValidate
-#endif
-#ifdef LIBXML_DEBUG_ENABLED
-xmlShellWrite
-#endif
-xmlSkipBlankChars
-xmlSnprintfElementContent
-xmlSplitQName
-xmlSplitQName2
-xmlSplitQName3
-xmlSprintfElementContent
-xmlStopParser
-xmlStrEqual
-xmlStrPrintf
-xmlStrQEqual
-xmlStrVPrintf
-xmlStrcasecmp
-xmlStrcasestr
-xmlStrcat
-xmlStrchr
-xmlStrcmp
-xmlStrdup
-xmlStreamPop
-xmlStreamPush
-xmlStreamPushAttr
-xmlStringCurrentChar
-xmlStringDecodeEntities
-xmlStringGetNodeList
-xmlStringLenDecodeEntities
-xmlStringLenGetNodeList
-xmlStrlen
-xmlStrncasecmp
-xmlStrncat
-xmlStrncatNew
-xmlStrncmp
-xmlStrndup
-xmlStrstr
-xmlStrsub
-xmlSubstituteEntitiesDefault
-xmlSwitchEncoding
-xmlSwitchInputEncoding
-xmlSwitchToEncoding
-xmlTextConcat
-xmlTextMerge
-xmlTextReaderAttributeCount
-xmlTextReaderBaseUri
-xmlTextReaderByteConsumed
-xmlTextReaderClose
-xmlTextReaderConstBaseUri
-xmlTextReaderConstEncoding
-xmlTextReaderConstLocalName
-xmlTextReaderConstName
-xmlTextReaderConstNamespaceUri
-xmlTextReaderConstPrefix
-xmlTextReaderConstString
-xmlTextReaderConstValue
-xmlTextReaderConstXmlLang
-xmlTextReaderConstXmlVersion
-xmlTextReaderCurrentDoc
-xmlTextReaderCurrentNode
-xmlTextReaderDepth
-xmlTextReaderExpand
-xmlTextReaderGetAttribute
-xmlTextReaderGetAttributeNo
-xmlTextReaderGetAttributeNs
-xmlTextReaderGetErrorHandler
-xmlTextReaderGetParserColumnNumber
-xmlTextReaderGetParserLineNumber
-xmlTextReaderGetParserProp
-xmlTextReaderGetRemainder
-xmlTextReaderHasAttributes
-xmlTextReaderHasValue
-xmlTextReaderIsDefault
-xmlTextReaderIsEmptyElement
-xmlTextReaderIsNamespaceDecl
-xmlTextReaderIsValid
-xmlTextReaderLocalName
-xmlTextReaderLocatorBaseURI
-xmlTextReaderLocatorLineNumber
-xmlTextReaderLookupNamespace
-xmlTextReaderMoveToAttribute
-xmlTextReaderMoveToAttributeNo
-xmlTextReaderMoveToAttributeNs
-xmlTextReaderMoveToElement
-xmlTextReaderMoveToFirstAttribute
-xmlTextReaderMoveToNextAttribute
-xmlTextReaderName
-xmlTextReaderNamespaceUri
-xmlTextReaderNext
-xmlTextReaderNextSibling
-xmlTextReaderNodeType
-xmlTextReaderNormalization
-xmlTextReaderPrefix
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-xmlTextReaderQuoteChar
-xmlTextReaderRead
-xmlTextReaderReadAttributeValue
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlTextReaderReadState
-xmlTextReaderReadString
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlTextReaderRelaxNGSetSchema
-#endif
-#ifdef LIBXML_SCHEMAS_ENABLED
-xmlTextReaderRelaxNGValidate
-#endif
-xmlTextReaderSetErrorHandler
-xmlTextReaderSetParserProp
-xmlTextReaderSetStructuredErrorHandler
-xmlTextReaderStandalone
-xmlTextReaderValue
-xmlTextReaderXmlLang
-xmlTextWriterEndAttribute
-xmlTextWriterEndCDATA
-xmlTextWriterEndComment
-xmlTextWriterEndDTD
-xmlTextWriterEndDTDAttlist
-xmlTextWriterEndDTDElement
-xmlTextWriterEndDTDEntity
-xmlTextWriterEndDocument
-xmlTextWriterEndElement
-xmlTextWriterEndPI
-xmlTextWriterFlush
-xmlTextWriterFullEndElement
-xmlTextWriterSetIndent
-xmlTextWriterSetIndentString
-xmlTextWriterStartAttribute
-xmlTextWriterStartAttributeNS
-xmlTextWriterStartCDATA
-xmlTextWriterStartComment
-xmlTextWriterStartDTD
-xmlTextWriterStartDTDAttlist
-xmlTextWriterStartDTDElement
-xmlTextWriterStartDTDEntity
-xmlTextWriterStartDocument
-xmlTextWriterStartElement
-xmlTextWriterStartElementNS
-xmlTextWriterStartPI
-xmlTextWriterWriteAttribute
-xmlTextWriterWriteAttributeNS
-xmlTextWriterWriteBase64
-xmlTextWriterWriteBinHex
-xmlTextWriterWriteCDATA
-xmlTextWriterWriteComment
-xmlTextWriterWriteDTD
-xmlTextWriterWriteDTDAttlist
-xmlTextWriterWriteDTDElement
-xmlTextWriterWriteDTDEntity
-xmlTextWriterWriteDTDExternalEntity
-xmlTextWriterWriteDTDExternalEntityContents
-xmlTextWriterWriteDTDInternalEntity
-xmlTextWriterWriteDTDNotation
-xmlTextWriterWriteElement
-xmlTextWriterWriteElementNS
-xmlTextWriterWriteFormatAttribute
-xmlTextWriterWriteFormatAttributeNS
-xmlTextWriterWriteFormatCDATA
-xmlTextWriterWriteFormatComment
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteFormatDTDAttlist
-xmlTextWriterWriteFormatDTDElement
-xmlTextWriterWriteFormatDTDInternalEntity
-xmlTextWriterWriteFormatElement
-xmlTextWriterWriteFormatElementNS
-xmlTextWriterWriteFormatPI
-xmlTextWriterWriteFormatRaw
-xmlTextWriterWriteFormatString
-xmlTextWriterWritePI
-xmlTextWriterWriteRaw
-xmlTextWriterWriteRawLen
-xmlTextWriterWriteString
-xmlTextWriterWriteVFormatAttribute
-xmlTextWriterWriteVFormatAttributeNS
-xmlTextWriterWriteVFormatCDATA
-xmlTextWriterWriteVFormatComment
-xmlTextWriterWriteVFormatDTD
-xmlTextWriterWriteVFormatDTDAttlist
-xmlTextWriterWriteVFormatDTDElement
-xmlTextWriterWriteVFormatDTDInternalEntity
-xmlTextWriterWriteVFormatElement
-xmlTextWriterWriteVFormatElementNS
-xmlTextWriterWriteVFormatPI
-xmlTextWriterWriteVFormatRaw
-xmlTextWriterWriteVFormatString
-xmlThrDefBufferAllocScheme
-xmlThrDefDefaultBufferSize
-xmlThrDefDeregisterNodeDefault
-xmlThrDefDoValidityCheckingDefaultValue
-xmlThrDefGetWarningsDefaultValue
-xmlThrDefIndentTreeOutput
-xmlThrDefKeepBlanksDefaultValue
-xmlThrDefLineNumbersDefaultValue
-xmlThrDefLoadExtDtdDefaultValue
-xmlThrDefOutputBufferCreateFilenameDefault
-xmlThrDefParserDebugEntities
-xmlThrDefParserInputBufferCreateFilenameDefault
-xmlThrDefPedanticParserDefaultValue
-xmlThrDefRegisterNodeDefault
-xmlThrDefSaveNoEmptyTags
-xmlThrDefSetGenericErrorFunc
-xmlThrDefSetStructuredErrorFunc
-xmlThrDefSubstituteEntitiesDefaultValue
-xmlThrDefTreeIndentString
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsAegeanNumbers
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsAlphabeticPresentationForms
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsArabic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsArabicPresentationFormsA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsArabicPresentationFormsB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsArmenian
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsArrows
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBasicLatin
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBengali
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBlock
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBlockElements
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBopomofo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBopomofoExtended
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBoxDrawing
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBraillePatterns
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsBuhid
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsByzantineMusicalSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKCompatibility
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKCompatibilityForms
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKCompatibilityIdeographs
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKCompatibilityIdeographsSupplement
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKRadicalsSupplement
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKSymbolsandPunctuation
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKUnifiedIdeographs
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKUnifiedIdeographsExtensionA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCJKUnifiedIdeographsExtensionB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCat
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatC
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatCc
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatCf
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatCo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatCs
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatL
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatLl
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatLm
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatLo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatLt
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatLu
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatM
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatMc
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatMe
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatMn
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatN
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatNd
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatNl
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatNo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatP
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPc
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPd
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPe
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPf
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPi
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatPs
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatS
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatSc
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatSk
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatSm
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatSo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatZ
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatZl
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatZp
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCatZs
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCherokee
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCombiningDiacriticalMarks
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCombiningDiacriticalMarksforSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCombiningHalfMarks
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCombiningMarksforSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsControlPictures
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCurrencySymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCypriotSyllabary
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCyrillic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsCyrillicSupplement
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsDeseret
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsDevanagari
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsDingbats
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsEnclosedAlphanumerics
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsEnclosedCJKLettersandMonths
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsEthiopic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGeneralPunctuation
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGeometricShapes
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGeorgian
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGothic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGreek
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGreekExtended
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGreekandCoptic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGujarati
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsGurmukhi
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHalfwidthandFullwidthForms
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHangulCompatibilityJamo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHangulJamo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHangulSyllables
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHanunoo
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHebrew
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHighPrivateUseSurrogates
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHighSurrogates
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsHiragana
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsIPAExtensions
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsIdeographicDescriptionCharacters
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKanbun
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKangxiRadicals
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKannada
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKatakana
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKatakanaPhoneticExtensions
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKhmer
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsKhmerSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLao
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLatin1Supplement
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLatinExtendedA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLatinExtendedAdditional
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLatinExtendedB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLetterlikeSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLimbu
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLinearBIdeograms
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLinearBSyllabary
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsLowSurrogates
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMalayalam
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMathematicalAlphanumericSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMathematicalOperators
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMiscellaneousMathematicalSymbolsA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMiscellaneousMathematicalSymbolsB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMiscellaneousSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMiscellaneousSymbolsandArrows
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMiscellaneousTechnical
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMongolian
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMusicalSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsMyanmar
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsNumberForms
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsOgham
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsOldItalic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsOpticalCharacterRecognition
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsOriya
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsOsmanya
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsPhoneticExtensions
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsPrivateUse
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsPrivateUseArea
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsRunic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsShavian
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSinhala
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSmallFormVariants
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSpacingModifierLetters
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSpecials
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSuperscriptsandSubscripts
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSupplementalArrowsA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSupplementalArrowsB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSupplementalMathematicalOperators
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSupplementaryPrivateUseAreaA
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSupplementaryPrivateUseAreaB
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsSyriac
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTagalog
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTagbanwa
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTags
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTaiLe
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTaiXuanJingSymbols
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTamil
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTelugu
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsThaana
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsThai
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsTibetan
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsUgaritic
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsUnifiedCanadianAboriginalSyllabics
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsVariationSelectors
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsVariationSelectorsSupplement
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsYiRadicals
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsYiSyllables
-#endif
-#ifdef LIBXML_REGEXP_ENABLED
-xmlUCSIsYijingHexagramSymbols
-#endif
-xmlURIEscape
-xmlURIEscapeStr
-xmlURIUnescapeString
-xmlUTF8Charcmp
-xmlUTF8Size
-xmlUTF8Strlen
-xmlUTF8Strloc
-xmlUTF8Strndup
-xmlUTF8Strpos
-xmlUTF8Strsize
-xmlUTF8Strsub
-xmlUnlinkNode
-xmlUnlockLibrary
-xmlUnsetNsProp
-xmlUnsetProp
-#ifdef LIBXML_REGEXP_ENABLED
-xmlValidBuildContentModel
-#endif
-xmlValidCtxtNormalizeAttributeValue
-xmlValidGetPotentialChildren
-xmlValidGetValidElements
-xmlValidNormalizeAttributeValue
-xmlValidateAttributeDecl
-xmlValidateAttributeValue
-xmlValidateDocument
-xmlValidateDocumentFinal
-xmlValidateDtd
-xmlValidateDtdFinal
-xmlValidateElement
-xmlValidateElementDecl
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateNameValue
-xmlValidateNamesValue
-xmlValidateNmtokenValue
-xmlValidateNmtokensValue
-xmlValidateNotationDecl
-xmlValidateNotationUse
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlValidatePopElement
-xmlValidatePushCData
-xmlValidatePushElement
-xmlValidateQName
-xmlValidateRoot
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeFreeContext
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeNewContext
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeProcess
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeProcessFlags
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeProcessNode
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeProcessTree
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeProcessTreeFlags
-#endif
-#ifdef LIBXML_XINCLUDE_ENABLED
-xmlXIncludeSetFlags
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathAddValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathBooleanFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastBooleanToNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastBooleanToString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNodeSetToBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNodeSetToNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNodeSetToString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNodeToNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNodeToString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNumberToBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastNumberToString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastStringToBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastStringToNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastToBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastToNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCastToString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCeilingFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCmpNodes
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCompareValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCompile
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCompiledEval
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathConcatFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathContainsFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathConvertBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathConvertNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathConvertString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCountFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathCtxtCompile
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-#ifdef LIBXML_DEBUG_ENABLED
-xmlXPathDebugDumpCompExpr
-#endif
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-#ifdef LIBXML_DEBUG_ENABLED
-xmlXPathDebugDumpObject
-#endif
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathDifference
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathDistinct
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathDistinctSorted
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathDivValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEqualValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathErr
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEval
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEvalExpr
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEvalExpression
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEvalPredicate
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathEvaluatePredicateResult
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFalseFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFloorFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeCompExpr
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeContext
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeNodeSet
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeNodeSetList
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeObject
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFreeParserContext
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFunctionLookup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathFunctionLookupNS
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathHasSameNodes
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathIdFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathInit
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathIntersection
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathIsInf
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathIsNaN
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathIsNodeType
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathLangFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathLastFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathLeading
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathLeadingSorted
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathLocalNameFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathModValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathMultValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNamespaceURIFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewCString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewContext
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewFloat
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewNodeSet
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewNodeSetList
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewParserContext
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNewValueTree
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextAncestor
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextAncestorOrSelf
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextAttribute
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextChild
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextDescendant
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextDescendantOrSelf
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextFollowing
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextFollowingSibling
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextNamespace
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextParent
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextPreceding
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextPrecedingSibling
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNextSelf
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeLeading
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeLeadingSorted
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetAdd
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetAddNs
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetAddUnique
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetContains
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetCreate
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetDel
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetFreeNs
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetMerge
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetRemove
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeSetSort
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeTrailing
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNodeTrailingSorted
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNormalizeFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNotEqualValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNotFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNsLookup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathNumberFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathObjectCopy
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathOrderDocElems
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathParseNCName
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathParseName
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPopBoolean
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPopExternal
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPopNodeSet
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPopNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPopString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathPositionFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterAllFunctions
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterFunc
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterFuncLookup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterFuncNS
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterNs
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterVariable
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterVariableLookup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisterVariableNS
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisteredFuncsCleanup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisteredNsCleanup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRegisteredVariablesCleanup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRoot
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathRoundFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathStartsWithFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathStringEvalNumber
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathStringFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathStringLengthFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathSubValues
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathSubstringAfterFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathSubstringBeforeFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathSubstringFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathSumFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathTrailing
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathTrailingSorted
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathTranslateFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathTrueFunction
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathValueFlipSign
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathVariableLookup
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathVariableLookupNS
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathWrapCString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathWrapExternal
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathWrapNodeSet
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPathWrapString
-#endif
-#ifdef LIBXML_XPATH_ENABLED
-xmlXPatherror
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrBuildNodeList
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrEval
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrEvalRangePredicate
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrFreeLocationSet
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrLocationSetAdd
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrLocationSetCreate
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrLocationSetDel
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrLocationSetMerge
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrLocationSetRemove
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewCollapsedRange
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewContext
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewLocationSetNodeSet
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewLocationSetNodes
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRange
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRangeNodeObject
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRangeNodePoint
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRangeNodes
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRangePointNode
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrNewRangePoints
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrRangeToFunction
-#endif
-#ifdef LIBXML_XPTR_ENABLED
-xmlXPtrWrapLocationSet
-#endif
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcb b/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcb
deleted file mode 100644
index 954d0534b5d..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcb
+++ /dev/null
@@ -1 +0,0 @@
-Microsoft C/C++ program database 2.00
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcl b/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcl
deleted file mode 100644
index 627ecb62164..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcl
+++ /dev/null
@@ -1,122 +0,0 @@
-
-
-
-Build Log
-
---------------------Configuration: libxml2 - Win32 (WCE x86em) Debug--------------------
-
-Command Lines
-Creating temporary file "C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12E.tmp" with contents
-[
-/nologo /W3 /Zi /Od /I "..\..\..\include" /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=300 /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "WIN32_PLATFORM_PSPC" /D "i486" /D UNDER_CE=300 /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Fp"X86EMDbg/libxml2.pch" /YX /Fo"X86EMDbg/" /Fd"X86EMDbg/" /Gz /c
-"C:\ppc\libxml\XML\DOCBparser.c"
-"C:\ppc\libxml\XML\encoding.c"
-"C:\ppc\libxml\XML\entities.c"
-"C:\ppc\libxml\XML\error.c"
-"C:\ppc\libxml\XML\globals.c"
-"C:\ppc\libxml\XML\hash.c"
-"C:\ppc\libxml\XML\list.c"
-"C:\ppc\libxml\XML\parser.c"
-"C:\ppc\libxml\XML\parserInternals.c"
-"C:\ppc\libxml\XML\SAX.c"
-"C:\ppc\libxml\XML\threads.c"
-"C:\ppc\libxml\XML\tree.c"
-"C:\ppc\libxml\XML\uri.c"
-"C:\ppc\libxml\XML\valid.c"
-"C:\ppc\libxml\XML\win32\wince\wincecompat.c"
-"C:\ppc\libxml\XML\xlink.c"
-"C:\ppc\libxml\XML\xmlIO.c"
-"C:\ppc\libxml\XML\xmlmemory.c"
-"C:\ppc\libxml\XML\c14n.c"
-"C:\ppc\libxml\XML\catalog.c"
-"C:\ppc\libxml\XML\debugXML.c"
-"C:\ppc\libxml\XML\HTMLparser.c"
-"C:\ppc\libxml\XML\HTMLtree.c"
-"C:\ppc\libxml\XML\nanoftp.c"
-"C:\ppc\libxml\XML\nanohttp.c"
-"C:\ppc\libxml\XML\xinclude.c"
-"C:\ppc\libxml\XML\xpath.c"
-"C:\ppc\libxml\XML\xpointer.c"
-]
-Creating command line "cl.exe @C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12E.tmp"
-Creating temporary file "C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12F.tmp" with contents
-[
-corelibc.lib winsock.lib commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /incremental:yes /pdb:"X86EMDbg/libxml2.pdb" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:libc.lib /nodefaultlib:libcd.lib /nodefaultlib:libcmt.lib /nodefaultlib:libcmtd.lib /nodefaultlib:msvcrt.lib /nodefaultlib:msvcrtd.lib /nodefaultlib:oldnames.lib /def:".\libxml2.def" /out:"X86EMDbg/libxml2.dll" /implib:"X86EMDbg/libxml2.lib" /windowsce:emulation /MACHINE:IX86
-.\X86EMDbg\DOCBparser.obj
-.\X86EMDbg\encoding.obj
-.\X86EMDbg\entities.obj
-.\X86EMDbg\error.obj
-.\X86EMDbg\globals.obj
-.\X86EMDbg\hash.obj
-.\X86EMDbg\list.obj
-.\X86EMDbg\parser.obj
-.\X86EMDbg\parserInternals.obj
-.\X86EMDbg\SAX.obj
-.\X86EMDbg\threads.obj
-.\X86EMDbg\tree.obj
-.\X86EMDbg\uri.obj
-.\X86EMDbg\valid.obj
-.\X86EMDbg\wincecompat.obj
-.\X86EMDbg\xlink.obj
-.\X86EMDbg\xmlIO.obj
-.\X86EMDbg\xmlmemory.obj
-.\X86EMDbg\c14n.obj
-.\X86EMDbg\catalog.obj
-.\X86EMDbg\debugXML.obj
-.\X86EMDbg\HTMLparser.obj
-.\X86EMDbg\HTMLtree.obj
-.\X86EMDbg\nanoftp.obj
-.\X86EMDbg\nanohttp.obj
-.\X86EMDbg\xinclude.obj
-.\X86EMDbg\xpath.obj
-.\X86EMDbg\xpointer.obj
-]
-Creating command line "link.exe @C:\DOCUME~1\fjvg\CONFIG~1\Temp\RSP12F.tmp"
-Output Window
-Compiling...
-DOCBparser.c
-encoding.c
-entities.c
-error.c
-globals.c
-hash.c
-list.c
-parser.c
-C:\ppc\libxml\XML\parser.c(2282) : warning C4090: '=' : different 'const' qualifiers
-parserInternals.c
-SAX.c
-threads.c
-tree.c
-uri.c
-valid.c
-wincecompat.c
-C:\ppc\libxml\XML\win32\wince\wincecompat.c(37) : warning C4047: '=' : 'char ' differs in levels of indirection from 'char [2]'
-C:\ppc\libxml\XML\win32\wince\wincecompat.c(39) : warning C4047: '=' : 'char ' differs in levels of indirection from 'char [2]'
-C:\ppc\libxml\XML\win32\wince\wincecompat.c(40) : warning C4047: 'return' : 'int ' differs in levels of indirection from 'void *'
-xlink.c
-xmlIO.c
-C:\ppc\libxml\XML\xmlIO.c(2404) : warning C4101: 'dir' : unreferenced local variable
-C:\ppc\libxml\XML\xmlIO.c(2405) : warning C4101: 'cur' : unreferenced local variable
-xmlmemory.c
-c14n.c
-catalog.c
-debugXML.c
-HTMLparser.c
-HTMLtree.c
-nanoftp.c
-nanohttp.c
-C:\ppc\libxml\XML\nanoftp.c(892) : warning C4761: integral size mismatch in argument; conversion supplied
-xinclude.c
-C:\ppc\libxml\XML\nanohttp.c(921) : warning C4761: integral size mismatch in argument; conversion supplied
-xpath.c
-xpointer.c
-Linking...
- Creating library X86EMDbg/libxml2.lib and object X86EMDbg/libxml2.exp
-
-
-
-Results
-libxml2.dll - 0 error(s), 8 warning(s)
-
-
-
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vco b/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vco
deleted file mode 100644
index 3599f1b0124..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vco
+++ /dev/null
@@ -1 +0,0 @@
-ÐÏࡱ
\ No newline at end of file
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcp b/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcp
deleted file mode 100644
index 101fbcd3703..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcp
+++ /dev/null
@@ -1,5273 +0,0 @@
-# Microsoft eMbedded Visual Tools Project File - Name="libxml2" - Package Owner=<4>
-# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102
-# TARGTYPE "Win32 (WCE x86em) Dynamic-Link Library" 0x7f02
-# TARGTYPE "Win32 (WCE x86) Dynamic-Link Library" 0x8302
-# TARGTYPE "Win32 (WCE ARM) Dynamic-Link Library" 0x8502
-# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202
-
-CFG=libxml2 - Win32 (WCE ARM) Release
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE
-!MESSAGE NMAKE /f "libxml2.vcn".
-!MESSAGE
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE
-!MESSAGE NMAKE /f "libxml2.vcn" CFG="libxml2 - Win32 (WCE ARM) Release"
-!MESSAGE
-!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "libxml2 - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Dynamic-Link Library")
-!MESSAGE "libxml2 - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Dynamic-Link Library")
-!MESSAGE "libxml2 - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Dynamic-Link Library")
-!MESSAGE "libxml2 - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
-!MESSAGE "libxml2 - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library")
-!MESSAGE "libxml2 - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Dynamic-Link Library")
-!MESSAGE
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-# PROP ATL_Project 2
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "ARMRel"
-# PROP BASE Intermediate_Dir "ARMRel"
-# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "ARMRel"
-# PROP Intermediate_Dir "ARMRel"
-# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
-CPP=clarm.exe
-# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
-# ADD LINK32 winsock.lib commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "ARMDbg"
-# PROP BASE Intermediate_Dir "ARMDbg"
-# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "ARMDbg"
-# PROP Intermediate_Dir "ARMDbg"
-# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
-CPP=clarm.exe
-# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "DEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /YX /Oxs /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "DEBUG" /D "_USRDLL" /D "CEDLL_EXPORTS" /Oxs /M$(CECrtMT) /c
-# SUBTRACT CPP /YX
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
-# ADD LINK32 winsock.lib commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "X86EMDbg"
-# PROP BASE Intermediate_Dir "X86EMDbg"
-# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "X86EMDbg"
-# PROP Intermediate_Dir "X86EMDbg"
-# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c
-# ADD CPP /nologo /W3 /Zi /Od /I "..\..\..\include" /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gz /c
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
-# ADD LINK32 $(CEx86Corelibc) winsock.lib commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "MIPSRel"
-# PROP BASE Intermediate_Dir "MIPSRel"
-# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "MIPSRel"
-# PROP Intermediate_Dir "MIPSRel"
-# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
-CPP=clmips.exe
-# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "SH3Rel"
-# PROP BASE Intermediate_Dir "SH3Rel"
-# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "SH3Rel"
-# PROP Intermediate_Dir "SH3Rel"
-# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
-CPP=shcl.exe
-# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
-# ADD LINK32 commctrl.lib coredll.lib winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "X86Dbg"
-# PROP BASE Intermediate_Dir "X86Dbg"
-# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
-# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "X86Dbg"
-# PROP Intermediate_Dir "X86Dbg"
-# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
-# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
-# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
-# ADD CPP /nologo /W3 /Zi /Od /I "..\..\include" /I "c:\ppc\libxml\XML\win32\wince" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
-MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
-# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) winsock.lib /nologo /base:"0x00100000" /stack:0x10000,0x1000 /entry:"_DllMainCRTStartup" /dll /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
-
-!ENDIF
-
-# Begin Target
-
-# Name "libxml2 - Win32 (WCE ARM) Release"
-# Name "libxml2 - Win32 (WCE ARM) Debug"
-# Name "libxml2 - Win32 (WCE x86em) Debug"
-# Name "libxml2 - Win32 (WCE MIPS) Release"
-# Name "libxml2 - Win32 (WCE SH3) Release"
-# Name "libxml2 - Win32 (WCE x86) Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\..\c14n.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\include\libxml\c14n.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\include\libxml\c14n.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\include\libxml\c14n.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\include\libxml\c14n.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_C14N_=\
- "..\..\config.h"\
- "..\..\include\libxml\c14n.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_C14N_=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\catalog.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_CATAL=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_CATAL=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\debugXML.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_DEBUG=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DEBUG=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\DOCBparser.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\include\libxml\DOCBparser.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\include\libxml\DOCBparser.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\include\libxml\DOCBparser.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\include\libxml\DOCBparser.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_DOCBP=\
- "..\..\config.h"\
- "..\..\include\libxml\DOCBparser.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_DOCBP=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\encoding.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_ENCOD=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENCOD=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\entities.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_ENTIT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ENTIT=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\error.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_ERROR=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_ERROR=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\globals.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_GLOBA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_GLOBA=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\hash.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_HASH_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HASH_=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\HTMLparser.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_HTMLP=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLP=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\HTMLtree.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_HTMLT=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_HTMLT=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\libxml2.def
-# End Source File
-# Begin Source File
-
-SOURCE=.\libxml2.def.src
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-USERDEP__LIBXM="../../include/libxml/xmlversion.h;"
-# Begin Custom Build
-InputPath=.\libxml2.def.src
-
-"libxml2.def" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- cl /I"..\.." /I"..\..\include" /nologo /EP $(InputPath) > libxml2.def
-
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\list.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_LIST_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_LIST_=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\nanoftp.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_NANOF=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOF=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\nanohttp.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_NANOH=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_NANOH=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\parser.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_PARSE=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSE=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\parserInternals.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_PARSER=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_PARSER=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\SAX.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_SAX_C=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\HTMLtree.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_SAX_C=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\threads.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_THREA=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_THREA=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\tree.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_TREE_=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_TREE_=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\uri.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_URI_C=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_URI_C=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\valid.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_VALID=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_VALID=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\wincecompat.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_WINCE=\
- ".\wincecompat.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xinclude.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xinclude.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xinclude.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xinclude.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xinclude.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XINCL=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xinclude.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XINCL=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xlink.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XLINK=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XLINK=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xmlIO.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XMLIO=\
- "..\..\config.h"\
- "..\..\include\libxml\catalog.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\nanoftp.h"\
- "..\..\include\libxml\nanohttp.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLIO=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xmlmemory.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XMLME=\
- "..\..\config.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XMLME=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xpath.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XPATH=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- "..\..\triodef.h"\
- "..\..\trionan.c"\
- "..\..\trionan.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPATH=\
- "..\..\config-mac.h"\
- "..\..\doc\doc_nan.h"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\xpointer.c
-
-!IF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Release"
-
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\include\winCEconfig.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE ARM) Debug"
-
-# PROP Exclude_From_Build 1
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86em) Debug"
-
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE MIPS) Release"
-
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
- "..\..\win32config.h"\
- "..\..\winCEconfig.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE SH3) Release"
-
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
-
-
-!ELSEIF "$(CFG)" == "libxml2 - Win32 (WCE x86) Debug"
-
-DEP_CPP_XPOIN=\
- "..\..\config.h"\
- "..\..\include\libxml\debugXML.h"\
- "..\..\include\libxml\encoding.h"\
- "..\..\include\libxml\entities.h"\
- "..\..\include\libxml\globals.h"\
- "..\..\include\libxml\hash.h"\
- "..\..\include\libxml\HTMLparser.h"\
- "..\..\include\libxml\list.h"\
- "..\..\include\libxml\parser.h"\
- "..\..\include\libxml\parserInternals.h"\
- "..\..\include\libxml\SAX.h"\
- "..\..\include\libxml\threads.h"\
- "..\..\include\libxml\tree.h"\
- "..\..\include\libxml\uri.h"\
- "..\..\include\libxml\valid.h"\
- "..\..\include\libxml\xlink.h"\
- "..\..\include\libxml\xmlerror.h"\
- "..\..\include\libxml\xmlIO.h"\
- "..\..\include\libxml\xmlmemory.h"\
- "..\..\include\libxml\xmlversion.h"\
- "..\..\include\libxml\xmlwin32version.h"\
- "..\..\include\libxml\xpath.h"\
- "..\..\include\libxml\xpathInternals.h"\
- "..\..\include\libxml\xpointer.h"\
- "..\..\include\win32config.h"\
- "..\..\libxml.h"\
- "..\..\trio.h"\
- ".\wincecompat.h"\
-
-NODEP_CPP_XPOIN=\
- "..\..\config-mac.h"\
-
-
-!ENDIF
-
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\..\include\libxml\c14n.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\catalog.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\debugXML.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\DOCBparser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\encoding.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\entities.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\globals.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\hash.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\HTMLparser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\HTMLtree.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\libxml.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\list.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\nanoftp.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\nanohttp.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\parser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\parserInternals.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\SAX.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\tree.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\uri.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\valid.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\win32config.h
-# End Source File
-# Begin Source File
-
-SOURCE=.\wincecompat.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xinclude.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xlink.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xmlerror.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xmlIO.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xmlmemory.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xmlversion.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xmlwin32version.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xpath.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xpathInternals.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\include\libxml\xpointer.h
-# End Source File
-# End Group
-# End Target
-# End Project
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcw b/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcw
deleted file mode 100644
index c050c4f0e22..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/libxml2.vcw
+++ /dev/null
@@ -1,41 +0,0 @@
-Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "libxml2"=.\libxml2.vcp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "ppcTest"=.\ppcTest\ppcTest.vcp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.c b/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.c
deleted file mode 100644
index bf70fcc49a1..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.c
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * wincecompat.c : wince compatiblity module
- *
- * See Copyright for the status of this software.
- *
- * javier@tiresiassoft.com
- *
- * 17 Sep 2002 created
- */
-
-#include "wincecompat.h"
-
-char *strError[]= {"Error 0","","No such file or directory","","","","","Arg list too long",
- "Exec format error","Bad file number","","","Not enough core","Permission denied","","",
- "","File exists","Cross-device link","","","","Invalid argument","","Too many open files",
- "","","","No space left on device","","","","","Math argument","Result too large","",
- "Resource deadlock would occur", "Unknown error under wince"};
-
-
-int errno=0;
-
-int read(int handle, char *buffer, unsigned int len)
-{
- return(fread(&buffer[0], len, 1, (FILE *) handle));
-}
-
-int write(int handle, const char *buffer, unsigned int len)
-{
- return(fwrite(&buffer[0], len,1,(FILE *) handle));
-}
-
-int open(const char *filename,int oflag, ...)
-{
- char mode[3]; /* mode[0] ="w/r/a" mode[1]="+" */
- mode[2]=0;
- if ( oflag==(O_WRONLY|O_CREAT) )
- mode[0]="w";
- else if (oflag==O_RDONLY)
- mode[0]="r";
- return fopen(filename, mode);
-
-}
-
-int close(int handle)
-{
- return ( fclose((FILE *) handle) );
-}
-
-
-char *getenv( const char *varname )
-{
- return NULL;
-}
-
-char *strerror(int errnum)
-{
- if (errnum>MAX_STRERROR)
- return strError[MAX_STRERROR];
- else
- return strError[errnum];
-}
diff --git a/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.h b/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.h
deleted file mode 100644
index 49468a3d46c..00000000000
--- a/reactos/lib/3rdparty/libxml2/win32/wince/wincecompat.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * wincecompat.h : wince compatiblity header file
- *
- * See Copyright for the status of this software.
- *
- * javier@tiresiassoft.com
- *
- * 17 Sep 2002 created
- */
-
-#ifndef __WINCECOMPAT_H__
-#define __WINCECOMPAT_H__
-
-#include
-
-#define MAX_STRERROR 31
-
-#define O_RDONLY 0x0000 /* open for reading only */
-#define O_WRONLY 0x0001 /* open for writing only */
-#define O_RDWR 0x0002 /* open for reading and writing */
-#define O_APPEND 0x0008 /* writes done at eof */
-
-#define O_CREAT 0x0100 /* create and open file */
-#define O_TRUNC 0x0200 /* open and truncate */
-#define O_EXCL 0x0400 /* open only if file doesn't already exist */
-
-extern int errno;
-/*
- Prototypes
-*/
-int read(int handle, char *buffer, unsigned int len);
-int write(int handle, const char *buffer, unsigned int len);
-int open(const char *filename,int oflag, ...);
-int close(int handle);
-char *getenv( const char *varname );
-char *strerror(int errnum);
-
-/*
- Macro'ed inexistant funtion names
-
-*/
-#define snprintf _snprintf
-#define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
-#define perror(_t) MessageBox(NULL, _T("_t"), _T("Error/Warning"), MB_OK)
-
-#endif
\ No newline at end of file
diff --git a/reactos/lib/3rdparty/libxml2/xstc/Makefile.am b/reactos/lib/3rdparty/libxml2/xstc/Makefile.am
deleted file mode 100644
index 8b1d1f00174..00000000000
--- a/reactos/lib/3rdparty/libxml2/xstc/Makefile.am
+++ /dev/null
@@ -1,131 +0,0 @@
-#
-# Definition for the tests from W3C
-#
-PYSCRIPTS=nist-test.py ms-test.py sun-test.py
-TESTDIR=Tests
-TESTDIRS=$(TESTDIR)/msxsdtest $(TESTDIR)/suntest $(TESTDIR)/Datatypes
-TARBALL=xsts-2002-01-16.tar.gz
-TARBALL_2=xsts-2004-01-14.tar.gz
-TSNAME=xmlschema2002-01-16
-TSNAME_2=xmlschema2004-01-14
-TARBALLURL=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME)/$(TARBALL)
-TARBALLURL_2=http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME_2)/$(TARBALL_2)
-MSTESTDEF=MSXMLSchema1-0-20020116.testSet
-SUNTESTDEF=SunXMLSchema1-0-20020116.testSet
-NISTTESTDEF=NISTXMLSchema1-0-20020116.testSet
-NISTTESTDEF_2=NISTXMLSchemaDatatypes.testSet
-
-#
-# The local data and scripts
-#
-EXTRA_DIST=xstc.py xstc-to-python.xsl
-#
-# Nothing is done by make, only make tests and
-# only if Python and Schemas are enabled.
-#
-all:
-
-#
-# Rule to load the test description and extract the informations
-#
-$(TESTDIRS) Tests/Metadata/$(NISTTESTDEF_2) Tests/Metadata/$(MSTTESTDEF) Tests/Metadata/$(SUNTESTDEF):
- -@(if [ ! -d Tests ] ; then \
- mkdir Tests ; \
- fi)
- -@(if [ ! -f $(TARBALL_2) ] ; then \
- echo "Missing the test suite description (2004-01-14), trying to fetch it" ;\
- if [ -x /usr/bin/wget ] ; then \
- wget $(TARBALLURL_2) ; \
- else echo "Dont' know how to fetch $(TARBALLURL_2)" ; fi ; fi)
- -@(if [ -f $(TARBALL_2) ] ; then \
- echo -n "extracting test data (NIST)..." ; \
- $(TAR) -xzf $(TARBALL_2) '*/Datatypes' '*/Metadata/$(NISTTESTDEF_2)' ; \
- echo "done" ; \
- fi)
- -@(if [ ! -f $(TARBALL) ] ; then \
- echo "Missing the test suite description (2002-01-16), trying to fetch it" ;\
- if [ -x /usr/bin/wget ] ; then \
- wget $(TARBALLURL) ; \
- else echo "Dont' know how to fetch $(TARBALLURL)" ; fi ; fi)
- -@(if [ -f $(TARBALL) ] ; then \
- echo -n "extracting test data (Sun, Microsoft)..." ; \
- $(TAR) -C Tests -xzf $(TARBALL) '*/suntest' '*/msxsdtest' '*/$(MSTESTDEF)' '*/$(SUNTESTDEF)' ; \
- if [ -d Tests/suntest ] ; then rm -r Tests/suntest ; fi ; \
- if [ -d Tests/msxsdtest ] ; then rm -r Tests/msxsdtest ; fi ; \
- mv Tests/xmlschema2002-01-16/* Tests ; \
- mv Tests/*.testSet Tests/Metadata ; \
- rm -r Tests/xmlschema2002-01-16 ; \
- echo "done" ; \
- fi)
-
-#
-# The python tests are generated via XSLT
-#
-nist-test.py: Tests/Metadata/$(NISTTESTDEF_2) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (NIST)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor NIST-2 \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(NISTTESTDEF_2) > $@ ; \
- chmod +x $@ ; fi )
-
-ms-test.py: Tests/Metadata/$(MSTTESTDEF) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (Microsoft)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor MS \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(MSTESTDEF) > $@ ; \
- chmod +x $@ ; fi )
-
-sun-test.py: Tests/Metadata/$(SUNTESTDEF) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (Sun)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor SUN \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(SUNTESTDEF) > $@ ; \
- chmod +x $@ ; fi )
-
-#
-# The actual test run if present. PYTHONPATH is updated to make sure
-# we run the version from the loacl build and not preinstalled bindings
-#
-pytests: $(PYSCRIPTS) $(TESTDIRS)
- -@(if [ -x nist-test.py -a -d $(TESTDIR)/Datatypes ] ; then \
- echo "## Running XML Schema tests (NIST)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) nist-test.py -s -b $(srcdir) ; fi)
- -@(if [ -x sun-test.py -a -d $(TESTDIR)/suntest ] ; then \
- echo "## Running Schema tests (Sun)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) sun-test.py -s -b $(srcdir) ; fi)
- -@(if [ -x ms-test.py -a -d $(TESTDIR)/msxsdtest ] ; then \
- echo "## Running Schema tests (Microsoft)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) ms-test.py -s -b $(srcdir) ; fi)
-
-tests:
- -@(if [ -x $(PYTHON) ] ; then \
- $(MAKE) MAKEFLAGS+=--silent pytests ; fi);
-
-#
-# Heavy, works well only on RHEL3
-#
-valgrind:
- -@(if [ -x $(PYTHON) ] ; then \
- echo '## Running the regression tests under Valgrind' ; \
- $(MAKE) CHECKER='valgrind' MAKEFLAGS+=--silent pytests ; fi);
-
-clean:
- rm -f $(PYSCRIPTS) test.log
-
-distclean:
- rm -rf $(PYSCRIPTS) test.log # TESTDIRS
diff --git a/reactos/lib/3rdparty/libxml2/xstc/Makefile.in b/reactos/lib/3rdparty/libxml2/xstc/Makefile.in
deleted file mode 100644
index 36242b1d676..00000000000
--- a/reactos/lib/3rdparty/libxml2/xstc/Makefile.in
+++ /dev/null
@@ -1,549 +0,0 @@
-# Makefile.in generated by automake 1.9.2 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-@SET_MAKE@
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ..
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = @INSTALL@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = @build@
-host_triplet = @host@
-subdir = xstc
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-SOURCES =
-DIST_SOURCES =
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = @ACLOCAL@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
-AMTAR = @AMTAR@
-AR = @AR@
-AS = @AS@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-BASE_THREAD_LIBS = @BASE_THREAD_LIBS@
-C14N_OBJ = @C14N_OBJ@
-CATALOG_OBJ = @CATALOG_OBJ@
-CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-CYGWIN_EXTRA_LDFLAGS = @CYGWIN_EXTRA_LDFLAGS@
-CYGWIN_EXTRA_PYTHON_LIBADD = @CYGWIN_EXTRA_PYTHON_LIBADD@
-DEBUG_OBJ = @DEBUG_OBJ@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
-DLLTOOL = @DLLTOOL@
-DOCB_OBJ = @DOCB_OBJ@
-ECHO = @ECHO@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-F77 = @F77@
-FFLAGS = @FFLAGS@
-FTP_OBJ = @FTP_OBJ@
-HAVE_ISINF = @HAVE_ISINF@
-HAVE_ISNAN = @HAVE_ISNAN@
-HTML_DIR = @HTML_DIR@
-HTML_OBJ = @HTML_OBJ@
-HTTP_OBJ = @HTTP_OBJ@
-ICONV_LIBS = @ICONV_LIBS@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LIBTOOL = @LIBTOOL@
-LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@
-LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@
-LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@
-LIBXML_VERSION = @LIBXML_VERSION@
-LIBXML_VERSION_EXTRA = @LIBXML_VERSION_EXTRA@
-LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@
-LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@
-LN_S = @LN_S@
-LTLIBOBJS = @LTLIBOBJS@
-MAKEINFO = @MAKEINFO@
-MODULE_EXTENSION = @MODULE_EXTENSION@
-MODULE_PLATFORM_LIBS = @MODULE_PLATFORM_LIBS@
-MV = @MV@
-M_LIBS = @M_LIBS@
-OBJDUMP = @OBJDUMP@
-OBJEXT = @OBJEXT@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PERL = @PERL@
-PYTHON = @PYTHON@
-PYTHON_INCLUDES = @PYTHON_INCLUDES@
-PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
-PYTHON_SUBDIR = @PYTHON_SUBDIR@
-PYTHON_TESTS = @PYTHON_TESTS@
-PYTHON_VERSION = @PYTHON_VERSION@
-RANLIB = @RANLIB@
-RDL_LIBS = @RDL_LIBS@
-READER_TEST = @READER_TEST@
-RELDATE = @RELDATE@
-RM = @RM@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-STATIC_BINARIES = @STATIC_BINARIES@
-STRIP = @STRIP@
-TAR = @TAR@
-TEST_C14N = @TEST_C14N@
-TEST_CATALOG = @TEST_CATALOG@
-TEST_DEBUG = @TEST_DEBUG@
-TEST_HTML = @TEST_HTML@
-TEST_MODULES = @TEST_MODULES@
-TEST_PATTERN = @TEST_PATTERN@
-TEST_PHTML = @TEST_PHTML@
-TEST_PUSH = @TEST_PUSH@
-TEST_REGEXPS = @TEST_REGEXPS@
-TEST_SAX = @TEST_SAX@
-TEST_SCHEMAS = @TEST_SCHEMAS@
-TEST_THREADS = @TEST_THREADS@
-TEST_VALID = @TEST_VALID@
-TEST_VTIME = @TEST_VTIME@
-TEST_XINCLUDE = @TEST_XINCLUDE@
-TEST_XPATH = @TEST_XPATH@
-TEST_XPTR = @TEST_XPTR@
-THREADS_W32 = @THREADS_W32@
-THREAD_CFLAGS = @THREAD_CFLAGS@
-THREAD_LIBS = @THREAD_LIBS@
-U = @U@
-VERSION = @VERSION@
-WIN32_EXTRA_LDFLAGS = @WIN32_EXTRA_LDFLAGS@
-WIN32_EXTRA_LIBADD = @WIN32_EXTRA_LIBADD@
-WITH_C14N = @WITH_C14N@
-WITH_CATALOG = @WITH_CATALOG@
-WITH_DEBUG = @WITH_DEBUG@
-WITH_DOCB = @WITH_DOCB@
-WITH_FTP = @WITH_FTP@
-WITH_HTML = @WITH_HTML@
-WITH_HTTP = @WITH_HTTP@
-WITH_ICONV = @WITH_ICONV@
-WITH_ISO8859X = @WITH_ISO8859X@
-WITH_LEGACY = @WITH_LEGACY@
-WITH_MEM_DEBUG = @WITH_MEM_DEBUG@
-WITH_MODULES = @WITH_MODULES@
-WITH_OUTPUT = @WITH_OUTPUT@
-WITH_PATTERN = @WITH_PATTERN@
-WITH_PUSH = @WITH_PUSH@
-WITH_PYTHON_FALSE = @WITH_PYTHON_FALSE@
-WITH_PYTHON_TRUE = @WITH_PYTHON_TRUE@
-WITH_READER = @WITH_READER@
-WITH_REGEXPS = @WITH_REGEXPS@
-WITH_RUN_DEBUG = @WITH_RUN_DEBUG@
-WITH_SAX1 = @WITH_SAX1@
-WITH_SCHEMAS = @WITH_SCHEMAS@
-WITH_THREADS = @WITH_THREADS@
-WITH_TREE = @WITH_TREE@
-WITH_TRIO = @WITH_TRIO@
-WITH_TRIO_SOURCES_FALSE = @WITH_TRIO_SOURCES_FALSE@
-WITH_TRIO_SOURCES_TRUE = @WITH_TRIO_SOURCES_TRUE@
-WITH_VALID = @WITH_VALID@
-WITH_WRITER = @WITH_WRITER@
-WITH_XINCLUDE = @WITH_XINCLUDE@
-WITH_XPATH = @WITH_XPATH@
-WITH_XPTR = @WITH_XPTR@
-XINCLUDE_OBJ = @XINCLUDE_OBJ@
-XMLLINT = @XMLLINT@
-XML_CFLAGS = @XML_CFLAGS@
-XML_INCLUDEDIR = @XML_INCLUDEDIR@
-XML_LIBDIR = @XML_LIBDIR@
-XML_LIBS = @XML_LIBS@
-XML_LIBTOOLLIBS = @XML_LIBTOOLLIBS@
-XPATH_OBJ = @XPATH_OBJ@
-XPTR_OBJ = @XPTR_OBJ@
-XSLTPROC = @XSLTPROC@
-Z_CFLAGS = @Z_CFLAGS@
-Z_LIBS = @Z_LIBS@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_AS = @ac_ct_AS@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_DLLTOOL = @ac_ct_DLLTOOL@
-ac_ct_F77 = @ac_ct_F77@
-ac_ct_OBJDUMP = @ac_ct_OBJDUMP@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-datadir = @datadir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-pythondir = @pythondir@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-
-#
-# Definition for the tests from W3C
-#
-PYSCRIPTS = nist-test.py ms-test.py sun-test.py
-TESTDIR = Tests
-TESTDIRS = $(TESTDIR)/msxsdtest $(TESTDIR)/suntest $(TESTDIR)/Datatypes
-TARBALL = xsts-2002-01-16.tar.gz
-TARBALL_2 = xsts-2004-01-14.tar.gz
-TSNAME = xmlschema2002-01-16
-TSNAME_2 = xmlschema2004-01-14
-TARBALLURL = http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME)/$(TARBALL)
-TARBALLURL_2 = http://www.w3.org/XML/2004/xml-schema-test-suite/$(TSNAME_2)/$(TARBALL_2)
-MSTESTDEF = MSXMLSchema1-0-20020116.testSet
-SUNTESTDEF = SunXMLSchema1-0-20020116.testSet
-NISTTESTDEF = NISTXMLSchema1-0-20020116.testSet
-NISTTESTDEF_2 = NISTXMLSchemaDatatypes.testSet
-
-#
-# The local data and scripts
-#
-EXTRA_DIST = xstc.py xstc-to-python.xsl
-all: all-am
-
-.SUFFIXES:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu xstc/Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --gnu xstc/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-tags: TAGS
-TAGS:
-
-ctags: CTAGS
-CTAGS:
-
-
-distdir: $(DISTFILES)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
-check-am: all-am
-check: check-am
-all-am: Makefile
-installdirs:
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean-am: clean-am distclean-generic distclean-libtool
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-info: info-am
-
-info-am:
-
-install-data-am:
-
-install-exec-am:
-
-install-info: install-info-am
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-info-am
-
-.PHONY: all all-am check check-am clean clean-generic clean-libtool \
- distclean distclean-generic distclean-libtool distdir dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-exec install-exec-am \
- install-info install-info-am install-man install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
- maintainer-clean-generic mostlyclean mostlyclean-generic \
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
- uninstall-info-am
-
-#
-# Nothing is done by make, only make tests and
-# only if Python and Schemas are enabled.
-#
-all:
-
-#
-# Rule to load the test description and extract the informations
-#
-$(TESTDIRS) Tests/Metadata/$(NISTTESTDEF_2) Tests/Metadata/$(MSTTESTDEF) Tests/Metadata/$(SUNTESTDEF):
- -@(if [ ! -d Tests ] ; then \
- mkdir Tests ; \
- fi)
- -@(if [ ! -f $(TARBALL_2) ] ; then \
- echo "Missing the test suite description (2004-01-14), trying to fetch it" ;\
- if [ -x /usr/bin/wget ] ; then \
- wget $(TARBALLURL_2) ; \
- else echo "Dont' know how to fetch $(TARBALLURL_2)" ; fi ; fi)
- -@(if [ -f $(TARBALL_2) ] ; then \
- echo -n "extracting test data (NIST)..." ; \
- $(TAR) -xzf $(TARBALL_2) '*/Datatypes' '*/Metadata/$(NISTTESTDEF_2)' ; \
- echo "done" ; \
- fi)
- -@(if [ ! -f $(TARBALL) ] ; then \
- echo "Missing the test suite description (2002-01-16), trying to fetch it" ;\
- if [ -x /usr/bin/wget ] ; then \
- wget $(TARBALLURL) ; \
- else echo "Dont' know how to fetch $(TARBALLURL)" ; fi ; fi)
- -@(if [ -f $(TARBALL) ] ; then \
- echo -n "extracting test data (Sun, Microsoft)..." ; \
- $(TAR) -C Tests -xzf $(TARBALL) '*/suntest' '*/msxsdtest' '*/$(MSTESTDEF)' '*/$(SUNTESTDEF)' ; \
- if [ -d Tests/suntest ] ; then rm -r Tests/suntest ; fi ; \
- if [ -d Tests/msxsdtest ] ; then rm -r Tests/msxsdtest ; fi ; \
- mv Tests/xmlschema2002-01-16/* Tests ; \
- mv Tests/*.testSet Tests/Metadata ; \
- rm -r Tests/xmlschema2002-01-16 ; \
- echo "done" ; \
- fi)
-
-#
-# The python tests are generated via XSLT
-#
-nist-test.py: Tests/Metadata/$(NISTTESTDEF_2) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (NIST)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor NIST-2 \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(NISTTESTDEF_2) > $@ ; \
- chmod +x $@ ; fi )
-
-ms-test.py: Tests/Metadata/$(MSTTESTDEF) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (Microsoft)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor MS \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(MSTESTDEF) > $@ ; \
- chmod +x $@ ; fi )
-
-sun-test.py: Tests/Metadata/$(SUNTESTDEF) xstc-to-python.xsl
- -@(if [ -x $(XSLTPROC) ] ; then \
- echo "Rebuilding script (Sun)" $@ ; \
- $(XSLTPROC) --nonet --stringparam vendor SUN \
- $(srcdir)/xstc-to-python.xsl \
- $(srcdir)/Tests/Metadata/$(SUNTESTDEF) > $@ ; \
- chmod +x $@ ; fi )
-
-#
-# The actual test run if present. PYTHONPATH is updated to make sure
-# we run the version from the loacl build and not preinstalled bindings
-#
-pytests: $(PYSCRIPTS) $(TESTDIRS)
- -@(if [ -x nist-test.py -a -d $(TESTDIR)/Datatypes ] ; then \
- echo "## Running XML Schema tests (NIST)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) nist-test.py -s -b $(srcdir) ; fi)
- -@(if [ -x sun-test.py -a -d $(TESTDIR)/suntest ] ; then \
- echo "## Running Schema tests (Sun)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) sun-test.py -s -b $(srcdir) ; fi)
- -@(if [ -x ms-test.py -a -d $(TESTDIR)/msxsdtest ] ; then \
- echo "## Running Schema tests (Microsoft)"; \
- PYTHONPATH="../python:../python/.libs:..:../libs:$$PYTHONPATH" ;\
- export PYTHONPATH; \
- LD_LIBRARY_PATH="$(top_builddir)/.libs:$$LD_LIBRARY_PATH" ; \
- export LD_LIBRARY_PATH; \
- $(CHECKER) $(PYTHON) ms-test.py -s -b $(srcdir) ; fi)
-
-tests:
- -@(if [ -x $(PYTHON) ] ; then \
- $(MAKE) MAKEFLAGS+=--silent pytests ; fi);
-
-#
-# Heavy, works well only on RHEL3
-#
-valgrind:
- -@(if [ -x $(PYTHON) ] ; then \
- echo '## Running the regression tests under Valgrind' ; \
- $(MAKE) CHECKER='valgrind' MAKEFLAGS+=--silent pytests ; fi);
-
-clean:
- rm -f $(PYSCRIPTS) test.log
-
-distclean:
- rm -rf $(PYSCRIPTS) test.log # TESTDIRS
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/reactos/lib/3rdparty/libxml2/xstc/xstc-to-python.xsl b/reactos/lib/3rdparty/libxml2/xstc/xstc-to-python.xsl
deleted file mode 100644
index 4de0e12bdbd..00000000000
--- a/reactos/lib/3rdparty/libxml2/xstc/xstc-to-python.xsl
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
-
-
-
- #!/usr/bin/python -u
-# -*- coding: UTF-8 -*-
-#
-# This file is generated from the W3C test suite description file.
-#
-
-import xstc
-from xstc import XSTCTestRunner, XSTCTestGroup, XSTCSchemaTest, XSTCInstanceTest
-
-xstc.vendor = ""
-
-r = XSTCTestRunner()
-
-# Group definitions.
-
-
-
-
-
-
-# Test definitions.
-
-
-
-
-
-r.run()
-
-
-
-
-
-
-
- r.addGroup(XSTCTestGroup("
-
- ", "
-
- ", """
-
-
-
-
- """))
-
-
-
-
-
-
-
-
-
-
- '
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- r.addTest(XSTCSchemaTest("
-
- ", "
-
- ",
-
- , "
-
- ",
-
- , "
-
- "))
-
-
-
-
- r.addTest(XSTCInstanceTest("
-
- ", "
-
- ",
-
- , "
-
- ",
-
- , "
-
- "))
-
-
-
-
-
\ No newline at end of file
diff --git a/reactos/lib/3rdparty/libxml2/xstc/xstc.py b/reactos/lib/3rdparty/libxml2/xstc/xstc.py
deleted file mode 100644
index ca011bb84af..00000000000
--- a/reactos/lib/3rdparty/libxml2/xstc/xstc.py
+++ /dev/null
@@ -1,693 +0,0 @@
-#!/usr/bin/env python
-
-#
-# This is the MS subset of the W3C test suite for XML Schemas.
-# This file is generated from the MS W3c test suite description file.
-#
-
-import sys, os
-import exceptions, optparse
-import libxml2
-
-opa = optparse.OptionParser()
-
-opa.add_option("-b", "--base", action="store", type="string", dest="baseDir",
- default="",
- help="""The base directory; i.e. the parent folder of the
- "nisttest", "suntest" and "msxsdtest" directories.""")
-
-opa.add_option("-o", "--out", action="store", type="string", dest="logFile",
- default="test.log",
- help="The filepath of the log file to be created")
-
-opa.add_option("--log", action="store_true", dest="enableLog",
- default=False,
- help="Create the log file")
-
-opa.add_option("--no-test-out", action="store_true", dest="disableTestStdOut",
- default=False,
- help="Don't output test results")
-
-opa.add_option("-s", "--silent", action="store_true", dest="silent", default=False,
- help="Disables display of all tests")
-
-opa.add_option("-v", "--verbose", action="store_true", dest="verbose",
- default=False,
- help="Displays all tests (only if --silent is not set)")
-
-opa.add_option("-x", "--max", type="int", dest="maxTestCount",
- default="-1",
- help="The maximum number of tests to be run")
-
-opa.add_option("-t", "--test", type="string", dest="singleTest",
- default=None,
- help="Runs the specified test only")
-
-opa.add_option("--tsw", "--test-starts-with", type="string", dest="testStartsWith",
- default=None,
- help="Runs the specified test(s), starting with the given string")
-
-opa.add_option("--rieo", "--report-internal-errors-only", action="store_true",
- dest="reportInternalErrOnly", default=False,
- help="Display erroneous tests of type 'internal' only")
-
-opa.add_option("--rueo", "--report-unimplemented-errors-only", action="store_true",
- dest="reportUnimplErrOnly", default=False,
- help="Display erroneous tests of type 'unimplemented' only")
-
-opa.add_option("--rmleo", "--report-mem-leak-errors-only", action="store_true",
- dest="reportMemLeakErrOnly", default=False,
- help="Display erroneous tests of type 'memory leak' only")
-
-opa.add_option("-c", "--combines", type="string", dest="combines",
- default=None,
- help="Combines to be run (all if omitted)")
-
-opa.add_option("--csw", "--csw", type="string", dest="combineStartsWith",
- default=None,
- help="Combines to be run (all if omitted)")
-
-opa.add_option("--rc", "--report-combines", action="store_true",
- dest="reportCombines", default=False,
- help="Display combine reports")
-
-opa.add_option("--rec", "--report-err-combines", action="store_true",
- dest="reportErrCombines", default=False,
- help="Display erroneous combine reports only")
-
-opa.add_option("--debug", action="store_true",
- dest="debugEnabled", default=False,
- help="Displays debug messages")
-
-opa.add_option("--info", action="store_true",
- dest="info", default=False,
- help="Displays info on the suite only. Does not run any test.")
-opa.add_option("--sax", action="store_true",
- dest="validationSAX", default=False,
- help="Use SAX2-driven validation.")
-opa.add_option("--tn", action="store_true",
- dest="displayTestName", default=False,
- help="Display the test name in every case.")
-
-(options, args) = opa.parse_args()
-
-if options.combines is not None:
- options.combines = options.combines.split()
-
-################################################
-# The vars below are not intended to be changed.
-#
-
-msgSchemaNotValidButShould = "The schema should be valid."
-msgSchemaValidButShouldNot = "The schema should be invalid."
-msgInstanceNotValidButShould = "The instance should be valid."
-msgInstanceValidButShouldNot = "The instance should be invalid."
-vendorNIST = "NIST"
-vendorNIST_2 = "NIST-2"
-vendorSUN = "SUN"
-vendorMS = "MS"
-
-###################
-# Helper functions.
-#
-vendor = None
-
-def handleError(test, msg):
- global options
- if not options.silent:
- test.addLibLog("'%s' LIB: %s" % (test.name, msg))
- if msg.find("Unimplemented") > -1:
- test.failUnimplemented()
- elif msg.find("Internal") > -1:
- test.failInternal()
-
-
-def fixFileNames(fileName):
- if (fileName is None) or (fileName == ""):
- return ""
- dirs = fileName.split("/")
- if dirs[1] != "Tests":
- fileName = os.path.join(".", "Tests")
- for dir in dirs[1:]:
- fileName = os.path.join(fileName, dir)
- return fileName
-
-class XSTCTestGroup:
- def __init__(self, name, schemaFileName, descr):
- global vendor, vendorNIST_2
- self.name = name
- self.descr = descr
- self.mainSchema = True
- self.schemaFileName = fixFileNames(schemaFileName)
- self.schemaParsed = False
- self.schemaTried = False
-
- def setSchema(self, schemaFileName, parsed):
- if not self.mainSchema:
- return
- self.mainSchema = False
- self.schemaParsed = parsed
- self.schemaTried = True
-
-class XSTCTestCase:
-
- #