diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2010-02-25 06:48:58 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2010-02-25 06:48:58 +0000 |
commit | f9aa0c3a08cfa0896aca418555ebbe4f26d0c3d8 (patch) | |
tree | 69dd482e851818be508ebd7b306d304f24d26916 /sci-mathematics/scilab/files/renesas-sh.diff | |
parent | Removed brlcad, now in main tree (diff) | |
download | sci-f9aa0c3a08cfa0896aca418555ebbe4f26d0c3d8.tar.gz sci-f9aa0c3a08cfa0896aca418555ebbe4f26d0c3d8.tar.bz2 sci-f9aa0c3a08cfa0896aca418555ebbe4f26d0c3d8.zip |
scilab version bump
Diffstat (limited to 'sci-mathematics/scilab/files/renesas-sh.diff')
-rw-r--r-- | sci-mathematics/scilab/files/renesas-sh.diff | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sci-mathematics/scilab/files/renesas-sh.diff b/sci-mathematics/scilab/files/renesas-sh.diff new file mode 100644 index 000000000..7aa655fe6 --- /dev/null +++ b/sci-mathematics/scilab/files/renesas-sh.diff @@ -0,0 +1,34 @@ +commit 9586bf474819f11734927d5138056c0c837b9bdb +Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> +Date: Fri Feb 19 23:44:51 2010 +0100 + + Support of Renesas SH(sh4) + +diff --git a/scilab/bin/scilab b/scilab/bin/scilab +index 7ec4bbc..f453f9a 100755 +--- a/scilab/bin/scilab ++++ b/scilab/bin/scilab +@@ -377,6 +377,9 @@ fi + "sparc64") + proc="sparc" + ;; ++ sh*) ++ proc="sh" ++ ;; + *) + echo "Could not find the Java configuration for the model <${MODEL}>. Please contact us." + ;; +diff --git a/scilab/m4/java.m4 b/scilab/m4/java.m4 +index 469019b..918fbf7 100644 +--- a/scilab/m4/java.m4 ++++ b/scilab/m4/java.m4 +@@ -446,6 +446,9 @@ AC_DEFUN([AC_JAVA_JNI_LIBS], [ + s390x) # s390 arch can also returns s390x + machine=s390 + ;; ++ sh*) ++ machine=sh ++ ;; + esac + + AC_MSG_LOG([Looking for JNI libs with $machine as machine hardware name]) |