1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-23 01:52:48 +03:00

fixed for mingw

This commit is contained in:
Igor Zlatkovic
2003-08-28 10:24:40 +00:00
parent 5805be2921
commit 1bab92dbb0
4 changed files with 39 additions and 24 deletions

View File

@@ -47,14 +47,15 @@ var withSchemas = true;
var withRegExps = true;
var withPython = false;
/* Win32 build options. */
var dirSep = "/";
var compiler = "msvc";
var buildDebug = 0;
var buildStatic = 0;
var buildPrefix = ".";
var buildBinPrefix = "$(PREFIX)\\bin";
var buildIncPrefix = "$(PREFIX)\\include";
var buildLibPrefix = "$(PREFIX)\\lib";
var buildSoPrefix = "$(PREFIX)\\lib";
var buildBinPrefix = "$(PREFIX)" + dirSep + "bin";
var buildIncPrefix = "$(PREFIX)" + dirSep + "include";
var buildLibPrefix = "$(PREFIX)" + dirSep + "lib";
var buildSoPrefix = "$(PREFIX)" + dirSep + "lib";
var buildInclude = ".";
var buildLib = ".";
/* Local stuff */
@@ -479,6 +480,12 @@ 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";
fso.CopyFile(confighsrc, configh, true);
WScript.Echo("Created config.h.");
// Display the final configuration.
var txtOut = "\nXML processor configuration\n";