Hi,

I have been having difficulties compiling mono (1.1.13.6) from source on
my FC4 machine (using the standard fedora compiler gcc 4.0.2).  The
attached simple patch has solved my problems (in that I can get things
to compile now) but I'm not sure whether this is the correct solution.

Cheers,
James.
--- mono-1.1.13.6.orig/mono/interpreter/transform.c	2006-03-13 22:57:59.000000000 +0000
+++ mono-1.1.13.6/mono/interpreter/transform.c	2006-03-29 11:17:54.000000000 +0000
@@ -2931,7 +2931,7 @@
 				m = mono_get_method_full (image, read32 (ip + 1), NULL, generic_context);
 				if (m == NULL) {
 					g_free (is_bb_start);
-					return mono_get_exception_missing_method ();
+					return mono_get_exception_missing_method ( NULL, NULL );
 				}
 				mono_class_init (m->klass);
 				if (!(m->klass->flags & TYPE_ATTRIBUTE_INTERFACE))
_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to