diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2009-01-14 08:35:11 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2009-01-14 08:35:11 +0000 |
commit | 61630053fdbbfd95cc7c69aad8f938583a909114 (patch) | |
tree | 22cbd64d599385af97a3190f1be0711d537ebc6f /m4/ac_attribute.m4 | |
parent | 99b784a0e1c560a131e854ea48f2f5c2f92e3808 (diff) | |
download | enlightenment-61630053fdbbfd95cc7c69aad8f938583a909114.tar.gz enlightenment-61630053fdbbfd95cc7c69aad8f938583a909114.tar.xz enlightenment-61630053fdbbfd95cc7c69aad8f938583a909114.zip |
update ac_attribute.m4
SVN revision: 38576
Diffstat (limited to 'm4/ac_attribute.m4')
-rw-r--r-- | m4/ac_attribute.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/ac_attribute.m4 b/m4/ac_attribute.m4 index 34bb4dbf2..3926d23d5 100644 --- a/m4/ac_attribute.m4 +++ b/m4/ac_attribute.m4 @@ -3,7 +3,7 @@ dnl Copyright (C) 2008 Vincent Torri <vtorri at univ-evry dot fr> dnl That code is public domain and can be freely used or copied. dnl Originally snatched from somewhere... -dnl Macro for checking if the compiler supports __atribute__ +dnl Macro for checking if the compiler supports __attribute__ dnl Usage: AC_C___ATTRIBUTE__ dnl call AC_DEFINE for HAVE___ATTRIBUTE__ and __UNUSED__ @@ -21,14 +21,14 @@ AC_CACHE_VAL([ac_cv___attribute__], [AC_TRY_COMPILE( [ #include <stdlib.h> - ], - [ + int func(int x); int foo(int x __attribute__ ((unused))) { exit(1); } ], + [], [ac_cv___attribute__="yes"], [ac_cv___attribute__="no"] )] |