From 2422b81174b64f1c3c06f0adac51af2252f6f4a4 Mon Sep 17 00:00:00 2001 From: caro Date: Tue, 21 Oct 2008 08:38:15 +0000 Subject: [PATCH] missing files git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/embryo@36914 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- m4/ac_attribute.m4 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 m4/ac_attribute.m4 diff --git a/m4/ac_attribute.m4 b/m4/ac_attribute.m4 new file mode 100644 index 0000000..46c1a42 --- /dev/null +++ b/m4/ac_attribute.m4 @@ -0,0 +1,14 @@ + +AC_DEFUN([AC_C___ATTRIBUTE__], +[ + AC_MSG_CHECKING(for __attribute__) + 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)]) + if test "$ac_cv___attribute__" = "yes"; then + AC_DEFINE(HAVE___ATTRIBUTE__, 1, [Define to 1 if your compiler has __attribute__]) + fi + AC_MSG_RESULT($ac_cv___attribute__) +]) + -- 2.7.4