--- mono-1.1.7/mono/interpreter/interp.c.orig 2005-02-01 02:02:53.000000000 +0100 +++ mono-1.1.7/mono/interpreter/interp.c 2005-05-11 22:24:16.000000000 +0200 @@ -4122,7 +4122,6 @@ "\n" "Runtime:\n" " --config filename load the specified config file instead of the default\n" - " --workers n maximum number of worker threads\n" ); exit (1); } --- mono-1.1.7/runtime/monodis-wrapper.in.orig 2005-04-28 05:06:48.000000000 +0200 +++ mono-1.1.7/runtime/monodis-wrapper.in 2005-05-12 00:31:09.000000000 +0200 @@ -3,4 +3,8 @@ MONO_CFG_DIR='@mono_cfg_dir@' MONO_SHARED_DIR=$r/runtime export MONO_CFG_DIR MONO_SHARED_DIR +if [ -f "$r/mono/mini/libmono.la" ]; then exec "$r/libtool" --mode=execute -dlopen "$r/mono/mini/libmono-2.0.la" "$r/mono/dis/monodis" "$@" +else +exec "$r/libtool" --mode=execute "$r/mono/dis/monodis" "$@" +fi --- mono-1.1.10/mono/interpreter/transform.c.orig 2005-03-07 11:18:52.000000000 +0100 +++ mono-1.1.10/mono/interpreter/transform.c 2005-11-15 13:01:05.000000000 +0100 @@ -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 ("unknown", "unknown"); } mono_class_init (m->klass); if (!(m->klass->flags & TYPE_ATTRIBUTE_INTERFACE))