1
0
mirror of https://github.com/GNOME/libxml2.git synced 2025-05-09 05:11:41 +08:00

applied patch from Rob Richards to allow disabling modules in win32, fixes

* win32/configure.js: applied patch from Rob Richards to allow
  disabling modules in win32, fixes #304071
Daniel
This commit is contained in:
Daniel Veillard 2005-08-02 11:27:54 +00:00
parent 22eda2bc82
commit c2aa615ccb
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Aug 2 13:26:42 CEST 2005 Daniel Veillard <daniel@veillard.com>
* 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 <daniel@veillard.com>
* python/libxml.c: applied fix from Jakub Piotr Clapa for

View File

@ -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")