r36881 - in /packages/atlas/trunk/debian: changelog patches/22_sh.diff

sylvestre at users.alioth.debian.org sylvestre at users.alioth.debian.org
Tue Sep 7 06:22:47 UTC 2010


Author: sylvestre
Date: Tue Sep  7 06:22:43 2010
New Revision: 36881

URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=36881
Log:
  * Support of sh4. Thanks to Nobuhiro Iwamatsu. (Closes: #595896)

Added:
    packages/atlas/trunk/debian/patches/22_sh.diff
Modified:
    packages/atlas/trunk/debian/changelog

Modified: packages/atlas/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/changelog?rev=36881&op=diff
==============================================================================
--- packages/atlas/trunk/debian/changelog (original)
+++ packages/atlas/trunk/debian/changelog Tue Sep  7 06:22:43 2010
@@ -1,3 +1,9 @@
+atlas (3.8.3-28) UNRELEASED; urgency=low
+
+  * Support of sh4. Thanks to Nobuhiro Iwamatsu. (Closes: #595896)
+
+ -- Sylvestre Ledru <sylvestre at debian.org>  Tue, 07 Sep 2010 08:22:11 +0200
+
 atlas (3.8.3-27) unstable; urgency=low
 
   * Fix a build issue with 64 archs. This issue has been introduced by upload

Added: packages/atlas/trunk/debian/patches/22_sh.diff
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/patches/22_sh.diff?rev=36881&op=file
==============================================================================
--- packages/atlas/trunk/debian/patches/22_sh.diff (added)
+++ packages/atlas/trunk/debian/patches/22_sh.diff Tue Sep  7 06:22:43 2010
@@ -1,0 +1,40 @@
+--- a/CONFIG//include/atlconf.h	2010-09-02 10:22:57.000000000 +0900
++++ b/CONFIG//include/atlconf.h	2010-09-02 10:24:30.000000000 +0900
+@@ -75,8 +75,13 @@
+ #define MachIsARMEL(mach_) \
+   ( 0 )
+ #endif
+-
+-
++#ifdef __sh__
++#define MachIsSH(mach_) \
++  ( __sh__ )
++#else
++#define MachIsSH(mach_) \
++  ( 0 )
++#endif
+ 
+ static char *f2c_namestr[5] = {"UNKNOWN","Add_", "Add__", "NoChange", "UpCase"};
+ static char *f2c_intstr[5] =
+--- a/CONFIG//src/probe_comp.c	2010-09-02 10:24:48.000000000 +0900
++++ b/CONFIG//src/probe_comp.c	2010-09-02 10:25:29.000000000 +0900
+@@ -521,6 +521,8 @@
+    if (MachIsMIPS(arch))
+ 	return(sp);
+ //      return((ptrbits == 64) ? "-mabi=64" : "-mabi=n32");
++   if (MachIsSH(arch))
++     return(sp);
+    if (!CompIsGcc(comp))
+    {
+ /*
+--- a/CONFIG//src/SpewMakeInc.c	2010-09-02 10:37:54.000000000 +0900
++++ b/CONFIG//src/SpewMakeInc.c	2010-09-02 10:38:14.000000000 +0900
+@@ -351,6 +351,8 @@
+    if (MachIsMIPS(arch))
+ 	return(sp);
+ //      return((ptrbits == 64) ? "-mabi=64" : "-mabi=n32");
++   if (MachIsSH(arch))
++     return(sp);
+    if (!CompIsGcc(comp))
+    {
+ /*




More information about the debian-science-commits mailing list