[Pkg-scicomp-commits] gmp/trunk/debian

Steven Michael Robbins smr at debian.org
Thu May 28 06:22:00 UTC 2009


SVN commit 4455 by smr:

Fix build on AVR32 and SH.

 M  +3 -0      gmp/trunk/debian/changelog  
 M  +4 -0      gmp/trunk/debian/gmp.h  


--- gmp/trunk/debian/changelog #4454:4455
@@ -4,6 +4,9 @@
     - Incorporate previous NMU patch.  Closes: #528923.
     - Remote patches applied upstream: mpf_eq.diff, mpf_set_str.c.4.diff, 
       perfpow.c.diff
+    - Upstream includes fix for scanf/sscanffuns.c.  Closes: #523076.
+  * gmp.h: Add case for SH processor.  Closes: #530747.  Add case for
+    AVR32.  Closes: #528511.
 
  -- Steve M. Robbins <smr at debian.org>  Thu, 28 May 2009 00:59:06 -0500
 
--- gmp/trunk/debian/gmp.h #4454:4455
@@ -37,6 +37,8 @@
 
 #if defined(__arm__)
 #include "gmp-arm.h"
+#elif defined(__avr32__)
+#include "gmp-avr32.h"
 #elif defined(__i386__)
 #include "gmp-i386.h"
 #elif defined(__ia64__)
@@ -57,6 +59,8 @@
 #include "gmp-x86_64.h"
 #elif defined(__alpha__)
 #include "gmp-alpha.h"
+#elif defined(__sh__)
+#include "gmp-sh.h"
 #else
 #error "The gmp-dev package is not usable with the architecture."
 #endif



More information about the Pkg-scicomp-commits mailing list