Hi,

I've just did a full bootstrap and System.Web doesn't compile any longer,
the attached patch fixes it. It's  trivial fix, due to a #ifdef the name of
the static constructor of the class doesn't match it's name. May I commit
it?


Cheers,
Rodrigo
Index: class/System.Web/System.Web.Handlers/AssemblyResourceLoader.cs
===================================================================
--- class/System.Web/System.Web.Handlers/AssemblyResourceLoader.cs	(revision 83533)
+++ class/System.Web/System.Web.Handlers/AssemblyResourceLoader.cs	(working copy)
@@ -55,7 +55,11 @@
 		const char QueryParamSeparator = '&';
 #endif
 		static readonly Hashtable _embeddedResources;
+#if SYSTEM_WEB_EXTENSIONS
+	static ScriptResourceHandler()
+#else
 		static AssemblyResourceLoader()
+#endif
 		{
 			_embeddedResources = new Hashtable ();
 			InitEmbeddedResourcesUrls ();
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to