From 849d65df624aa0dfd74a21dc985309965d92289d Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 14 Jan 2009 08:36:37 +0000 Subject: [PATCH] update ac_attribute.m4 SVN revision: 38581 --- legacy/ecore/m4/ac_attribute.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/ecore/m4/ac_attribute.m4 b/legacy/ecore/m4/ac_attribute.m4 index 34bb4dbf2f..3926d23d56 100644 --- a/legacy/ecore/m4/ac_attribute.m4 +++ b/legacy/ecore/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"] )]