diff --git a/ChangeLog b/ChangeLog index 8431cfe2..033f96a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 2 13:26:42 CEST 2005 Daniel Veillard + + * win32/configure.js: applied patch from Rob Richards to allow + disabling modules in win32, fixes #304071 + Mon Aug 1 07:18:53 CEST 2005 Daniel Veillard * python/libxml.c: applied fix from Jakub Piotr Clapa for diff --git a/win32/configure.js b/win32/configure.js index 5837aaf2..6c9909bc 100644 --- a/win32/configure.js +++ b/win32/configure.js @@ -468,6 +468,8 @@ for (i = 0; (i < WScript.Arguments.length) && (error == 0); i++) { withSchematron = strToBool(arg.substring(opt.length + 1, arg.length)); else if (opt == "regexps") withRegExps = strToBool(arg.substring(opt.length + 1, arg.length)); + else if (opt == "modules") + withModules = 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")