From: caro Date: Wed, 14 Jan 2009 08:36:02 +0000 (+0000) Subject: update ac_attribute.m4 X-Git-Tag: submit/2.0alpha-wayland/20121127.222001~542 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a929254a252e027ccc5c7a772029cb76f2c24a97;p=profile%2Fivi%2Feet.git update ac_attribute.m4 git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eet@38578 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/m4/ac_attribute.m4 b/m4/ac_attribute.m4 index 34bb4db..3926d23 100644 --- a/m4/ac_attribute.m4 +++ b/m4/ac_attribute.m4 @@ -3,7 +3,7 @@ dnl Copyright (C) 2008 Vincent Torri 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 - ], - [ + int func(int x); int foo(int x __attribute__ ((unused))) { exit(1); } ], + [], [ac_cv___attribute__="yes"], [ac_cv___attribute__="no"] )]