| OLD | NEW |
| 1 /* Configure script for libxml, specific for Windows with Scripting Host. | 1 /* Configure script for libxml, specific for Windows with Scripting Host. |
| 2 * | 2 * |
| 3 * This script will configure the libxml build process and create necessary file
s. | 3 * This script will configure the libxml build process and create necessary file
s. |
| 4 * Run it with an 'help', or an invalid option and it will tell you what options | 4 * Run it with an 'help', or an invalid option and it will tell you what options |
| 5 * it accepts. | 5 * it accepts. |
| 6 * | 6 * |
| 7 * March 2002, Igor Zlatkovic <igor@zlatkovic.com> | 7 * March 2002, Igor Zlatkovic <igor@zlatkovic.com> |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /* The source directory, relative to the one where this file resides. */ | 10 /* The source directory, relative to the one where this file resides. */ |
| 11 var srcDirXml = ".."; | 11 var srcDirXml = ".."; |
| 12 var srcDirUtils = ".."; | 12 var srcDirUtils = ".."; |
| 13 /* Base name of what we are building. */ | 13 /* Base name of what we are building. */ |
| 14 var baseName = "libxml2"; | 14 var baseName = "libxml2"; |
| 15 /* Configure file which contains the version and the output file where | 15 /* Configure file which contains the version and the output file where |
| 16 we can store our build configuration. */ | 16 we can store our build configuration. */ |
| 17 var configFile = srcDirXml + "\\configure.in"; | 17 var configFile = srcDirXml + "\\configure.ac"; |
| 18 var versionFile = ".\\config.msvc"; | 18 var versionFile = ".\\config.msvc"; |
| 19 /* Input and output files regarding the libxml features. */ | 19 /* Input and output files regarding the libxml features. */ |
| 20 var optsFileIn = srcDirXml + "\\include\\libxml\\xmlversion.h.in"; | 20 var optsFileIn = srcDirXml + "\\include\\libxml\\xmlversion.h.in"; |
| 21 var optsFile = srcDirXml + "\\include\\libxml\\xmlversion.h"; | 21 var optsFile = srcDirXml + "\\include\\libxml\\xmlversion.h"; |
| 22 /* Version strings for the binary distribution. Will be filled later | 22 /* Version strings for the binary distribution. Will be filled later |
| 23 in the code. */ | 23 in the code. */ |
| 24 var verMajor; | 24 var verMajor; |
| 25 var verMinor; | 25 var verMinor; |
| 26 var verMicro; | 26 var verMicro; |
| 27 var verMicroSuffix; | 27 var verMicroSuffix; |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 txtOut += " Put tools in: " + buildBinPrefix + "\n"; | 699 txtOut += " Put tools in: " + buildBinPrefix + "\n"; |
| 700 txtOut += " Put headers in: " + buildIncPrefix + "\n"; | 700 txtOut += " Put headers in: " + buildIncPrefix + "\n"; |
| 701 txtOut += "Put static libs in: " + buildLibPrefix + "\n"; | 701 txtOut += "Put static libs in: " + buildLibPrefix + "\n"; |
| 702 txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; | 702 txtOut += "Put shared libs in: " + buildSoPrefix + "\n"; |
| 703 txtOut += " Include path: " + buildInclude + "\n"; | 703 txtOut += " Include path: " + buildInclude + "\n"; |
| 704 txtOut += " Lib path: " + buildLib + "\n"; | 704 txtOut += " Lib path: " + buildLib + "\n"; |
| 705 WScript.Echo(txtOut); | 705 WScript.Echo(txtOut); |
| 706 | 706 |
| 707 // | 707 // |
| 708 | 708 |
| OLD | NEW |