summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2003-02-28 13:00:42 +0000
committerMarinus Schraal <foser@gentoo.org>2003-02-28 13:00:42 +0000
commit3b5a36366caf8426f61c1d3cef137b05852ab5a6 (patch)
tree69f88f43bd781a51d3bb17f4ea292319f55cfd76 /dev-lang/mono/files
parentFix for building sparc32 on sparc64 (diff)
downloadhistorical-3b5a36366caf8426f61c1d3cef137b05852ab5a6.tar.gz
historical-3b5a36366caf8426f61c1d3cef137b05852ab5a6.tar.bz2
historical-3b5a36366caf8426f61c1d3cef137b05852ab5a6.zip
removed redundant patch
Diffstat (limited to 'dev-lang/mono/files')
-rw-r--r--dev-lang/mono/files/mono-0.20-unix_rootdir_env.patch56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-lang/mono/files/mono-0.20-unix_rootdir_env.patch b/dev-lang/mono/files/mono-0.20-unix_rootdir_env.patch
deleted file mode 100644
index 0bff7f8293d0..000000000000
--- a/dev-lang/mono/files/mono-0.20-unix_rootdir_env.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-Only in mono-0.20.patched/mono/os/unix/: .deps
-diff -ur mono-0.20/mono/os/unix/Makefile.am mono-0.20.patched/mono/os/unix/Makefile.am
---- mono-0.20/mono/os/unix/Makefile.am 2002-07-19 19:08:25.000000000 +0200
-+++ mono-0.20.patched/mono/os/unix/Makefile.am 2003-02-25 23:27:13.000000000 +0100
-@@ -1,5 +1,6 @@
-
--INCLUDES = -I$(top_srcdir)
-+INCLUDES = -I$(top_srcdir) \
-+ $(GLIB_CFLAGS)
-
- noinst_LTLIBRARIES = libmonoos.la
-
-diff -ur mono-0.20/mono/os/unix/Makefile.in mono-0.20.patched/mono/os/unix/Makefile.in
---- mono-0.20/mono/os/unix/Makefile.in 2003-02-24 00:58:18.000000000 +0100
-+++ mono-0.20.patched/mono/os/unix/Makefile.in 2003-02-25 23:29:33.000000000 +0100
-@@ -109,7 +109,8 @@
- libmono_cflags = @libmono_cflags@
- libmono_ldflags = @libmono_ldflags@
-
--INCLUDES = -I$(top_srcdir)
-+INCLUDES = -I$(top_srcdir) \
-+ $(GLIB_CFLAGS)
-
- noinst_LTLIBRARIES = libmonoos.la
-
-diff -ur mono-0.20/mono/os/unix/util.c mono-0.20.patched/mono/os/unix/util.c
---- mono-0.20/mono/os/unix/util.c 2002-08-28 16:14:24.000000000 +0200
-+++ mono-0.20.patched/mono/os/unix/util.c 2003-02-25 23:45:19.000000000 +0100
-@@ -8,6 +8,7 @@
- */
- #include <config.h>
- #include <mono/os/util.h>
-+#include <mono/metadata/metadata.h>
-
- /*
- * mono_set_rootdir:
-@@ -18,7 +19,18 @@
- void
- mono_set_rootdir (void)
- {
-- /* nothing on Unix */
-+ gchar *moddir, *root;
-+
-+ moddir = (gchar*)g_getenv ("MONO_ROOTDIR");
-+
-+ if (moddir)
-+ {
-+ root = g_build_path (G_DIR_SEPARATOR_S, moddir, NULL);
-+
-+ mono_assembly_setrootdir (root);
-+
-+ g_free (root);
-+ }
- }
-
-