Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1747)

Side by Side Diff: third_party/libxml/src/win32/configure.js

Issue 1752223002: Roll libxml to 2.9.3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-cherry-pick fprintf formatting fix. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698