24 lines
817 B
Plaintext
24 lines
817 B
Plaintext
$NetBSD: patch-ab,v 1.8 2013/01/31 20:30:26 adam Exp $
|
|
|
|
Fixed detection of __attribute__((__mode__(XX))) for sunpro.
|
|
|
|
--- acinclude.m4.orig 2007-09-01 12:09:03.000000000 +0200
|
|
+++ acinclude.m4 2007-11-25 09:26:07.000000000 +0100
|
|
@@ -3068,7 +3068,15 @@ dnl Introduced in gcc 2.2, but perhaps
|
|
AC_DEFUN([GMP_C_ATTRIBUTE_MODE],
|
|
[AC_CACHE_CHECK([whether gcc __attribute__ ((mode (XX))) works],
|
|
gmp_cv_c_attribute_mode,
|
|
-[AC_TRY_COMPILE([typedef int SItype __attribute__ ((mode (SI)));], ,
|
|
+[AC_TRY_COMPILE([
|
|
+ typedef int SItype __attribute__ ((mode (SI)));
|
|
+ typedef int QItype __attribute__ ((mode (QI)));
|
|
+], [
|
|
+ switch (1) {
|
|
+ case sizeof(SItype):
|
|
+ case sizeof(QItype): ;
|
|
+ }
|
|
+],
|
|
gmp_cv_c_attribute_mode=yes, gmp_cv_c_attribute_mode=no)
|
|
])
|
|
if test $gmp_cv_c_attribute_mode = yes; then
|