diff options
author | Cliff Brake <cbrake@bec-systems.com> | 2009-07-29 11:14:50 -0400 |
---|---|---|
committer | Cliff Brake <cbrake@bec-systems.com> | 2009-07-31 17:54:40 -0400 |
commit | 3e377a05c6cbbf90865fa81da621d5a36ec3b842 (patch) | |
tree | 845ded2876b9623360f2792b9de787051722b0fb /recipes/mono/mono-2.4.2.3 | |
parent | 5fe09b5028eac0d99a85e0f9e14b99892dd60fb2 (diff) |
mono: add 2.4.2.3 recipes
Diffstat (limited to 'recipes/mono/mono-2.4.2.3')
-rw-r--r-- | recipes/mono/mono-2.4.2.3/0001-remove-docs-dir-from-build.patch | 30 | ||||
-rw-r--r-- | recipes/mono/mono-2.4.2.3/configure.patch | 44 | ||||
-rw-r--r-- | recipes/mono/mono-2.4.2.3/mini-arm.patch | 11 |
3 files changed, 85 insertions, 0 deletions
diff --git a/recipes/mono/mono-2.4.2.3/0001-remove-docs-dir-from-build.patch b/recipes/mono/mono-2.4.2.3/0001-remove-docs-dir-from-build.patch new file mode 100644 index 0000000000..4e276e3f0c --- /dev/null +++ b/recipes/mono/mono-2.4.2.3/0001-remove-docs-dir-from-build.patch @@ -0,0 +1,30 @@ +From 2ca04d7b2af1f1d690d918da047b03de768f1a8b Mon Sep 17 00:00:00 2001 +From: Cliff Brake <cbrake@bec-systems.com> +Date: Fri, 31 Jul 2009 17:48:47 -0400 +Subject: [PATCH] remove docs dir from build + +--- + Makefile.am | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 083bb82..386ed91 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,11 +1,11 @@ + AUTOMAKE_OPTIONS = foreign + ACLOCAL_AMFLAGS = -I . + +-SUBDIRS = po $(libgc_dir) $(eglib_dir) mono $(ikvm_native_dir) support data runtime scripts man samples web msvc docs ++SUBDIRS = po $(libgc_dir) $(eglib_dir) mono $(ikvm_native_dir) support data runtime scripts man samples web msvc + + # Keep in sync with SUBDIRS + ## 'tools' is not normally built +-DIST_SUBDIRS = po libgc $(eglib_dir) mono ikvm-native support data runtime scripts man samples web tools msvc docs ++DIST_SUBDIRS = po libgc $(eglib_dir) mono ikvm-native support data runtime scripts man samples web tools msvc + + EXTRA_DIST= nls.m4 po.m4 progtest.m4 mono-uninstalled.pc.in build-mingw32.sh LICENSE mkinstalldirs + +-- +1.6.0.4 + diff --git a/recipes/mono/mono-2.4.2.3/configure.patch b/recipes/mono/mono-2.4.2.3/configure.patch new file mode 100644 index 0000000000..7ca874ab07 --- /dev/null +++ b/recipes/mono/mono-2.4.2.3/configure.patch @@ -0,0 +1,44 @@ +Index: mono-2.4.2.1/configure.in +=================================================================== +--- mono-2.4.2.1.orig/configure.in 2008-11-13 18:22:29.000000000 -0500 ++++ mono-2.4.2.1/configure.in 2008-12-10 16:03:11.000000000 -0500 +@@ -1155,6 +1155,8 @@ + ], [ + AC_MSG_RESULT(no) + with_tls=pthread ++ ], [ ++ AC_MSG_RESULT(yes) + ]) + fi + +@@ -1257,6 +1259,9 @@ + ], [ + with_sigaltstack=no + AC_MSG_RESULT(no) ++ ], [ ++ AC_MSG_RESULT(yes) ++ AC_DEFINE(HAVE_WORKING_SIGALTSTACK) + ]) + fi + +@@ -1746,6 +1751,7 @@ + + jit_wanted=false + interp_wanted=false ++echo "CLIFF: checking host = $host" + case "$host" in + # mips-sgi-irix5.* | mips-sgi-irix6.*) + # TARGET=MIPS; +@@ -1882,10 +1888,12 @@ + jit_wanted=true + ;; + arm*-linux*) ++ echo "CLIFF: found arm linux" + TARGET=ARM; + arch_target=arm; + ACCESS_UNALIGNED="no" + JIT_SUPPORTED=yes ++ CPPFLAGS="$CPPFLAGS -DARM_FPU_VFP=1" + jit_wanted=true + ;; + s390-*-linux*) diff --git a/recipes/mono/mono-2.4.2.3/mini-arm.patch b/recipes/mono/mono-2.4.2.3/mini-arm.patch new file mode 100644 index 0000000000..d517a5a276 --- /dev/null +++ b/recipes/mono/mono-2.4.2.3/mini-arm.patch @@ -0,0 +1,11 @@ +--- mono-2.4.2.1/mono/mini/mini-arm.h 2009-06-23 09:41:00.000000000 -0600 ++++ mono-2.4.2.1/mono/mini/mini-arm.h 2009-06-23 09:40:27.000000000 -0600 +@@ -9,7 +9,7 @@ + #endif + + #ifdef ARM_FPU_VFP +-#error "VFP support is not complete, try mono SVN for that." ++//#error "VFP support is not complete, try mono SVN for that." + #endif + + #if defined(__ARM_EABI__) |