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
diff --git a/ChangeLog b/ChangeLog
index 8431cfe..033f96a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/win32/configure.js b/win32/configure.js
index 5837aaf..6c9909b 100644
--- a/win32/configure.js
+++ b/win32/configure.js
@@ -468,6 +468,8 @@
 			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")