diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-10-05 20:09:47 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-10-05 20:09:47 +0000 |
commit | 7fe3d3599446108bc36a0ab6ec563a267db02733 (patch) | |
tree | 8c45e7b3087e289466d4fb4ff99b12b209b770f6 /m4 | |
parent | 227ef6982edc5e7a31f74077b93e82aeb33d7d6f (diff) |
merge: __UNUSED__ --> EINA_UNUSED and some fixes in eo.
SVN revision: 77542
Diffstat (limited to 'm4')
-rw-r--r-- | m4/efl_attribute.m4 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/m4/efl_attribute.m4 b/m4/efl_attribute.m4 index 78bff15679..cd42e9cda6 100644 --- a/m4/efl_attribute.m4 +++ b/m4/efl_attribute.m4 | |||
@@ -3,30 +3,6 @@ dnl That code is public domain and can be freely used or copied. | |||
3 | 3 | ||
4 | dnl Macros for checking if the compiler supports some __attribute__ uses | 4 | dnl Macros for checking if the compiler supports some __attribute__ uses |
5 | 5 | ||
6 | dnl Usage: EFL_ATTRIBUTE_UNUSED | ||
7 | dnl call AC_DEFINE for __UNUSED__ if __attribute__((unused)) is available | ||
8 | |||
9 | AC_DEFUN([EFL_ATTRIBUTE_UNUSED], | ||
10 | [ | ||
11 | AC_MSG_CHECKING([for __attribute__ ((unused))]) | ||
12 | AC_COMPILE_IFELSE( | ||
13 | [AC_LANG_PROGRAM( | ||
14 | [[ | ||
15 | void foo(int x __attribute__ ((unused))) {} | ||
16 | ]], | ||
17 | [[ | ||
18 | ]])], | ||
19 | [have_attribute_unused="yes"], | ||
20 | [have_attribute_unused="no"]) | ||
21 | AC_MSG_RESULT([${have_attribute_unused}]) | ||
22 | |||
23 | if test "x${have_attribute_unused}" = "xyes" ; then | ||
24 | AC_DEFINE([__UNUSED__], [__attribute__ ((unused))], [Macro declaring a function argument to be unused.]) | ||
25 | else | ||
26 | AC_DEFINE([__UNUSED__], [], [__attribute__ ((unused)) is not supported.]) | ||
27 | fi | ||
28 | ]) | ||
29 | |||
30 | dnl Usage: EFL_ATTRIBUTE_VECTOR | 6 | dnl Usage: EFL_ATTRIBUTE_VECTOR |
31 | dnl call AC_DEFINE for HAVE_GCC_ATTRIBUTE_VECTOR if __attribute__((vector)) is available | 7 | dnl call AC_DEFINE for HAVE_GCC_ATTRIBUTE_VECTOR if __attribute__((vector)) is available |
32 | 8 | ||