applied patch from Mark Vakoc to simplify his work from CVS checkouts.

* win32/configure.js: applied patch from Mark Vakoc to simplify
  his work from CVS checkouts.
Daniel
This commit is contained in:
Daniel Veillard 2003-11-05 09:50:55 +00:00
parent dbf6ae87aa
commit 6b9d6951ff
2 changed files with 11 additions and 2 deletions

View File

@ -1,7 +1,11 @@
Wed Nov 5 10:49:20 CET 2003 Daniel Veillard <daniel@veillard.com>
* win32/configure.js: applied patch from Mark Vakoc to simplify
his work from CVS checkouts.
Tue Nov 4 21:16:47 MST 2003 John Fleck <jfleck@inkstain.net>
* doc/xmlreader.html
minor cleanups
* doc/xmlreader.html: minor cleanups
Tue Nov 4 15:52:28 PST 2003 William Brack <wbrack@mmm.com.hk>

View File

@ -561,6 +561,11 @@ 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.");