diff options
author | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
commit | dd7595a3475407a7fa96a97393bae8c5220e8762 (patch) | |
tree | e341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/eina/m4/efl_attribute.m4 | |
parent | Add the skeleton. (diff) | |
download | SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2 SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz |
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to '')
-rw-r--r-- | libraries/eina/m4/efl_attribute.m4 | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/libraries/eina/m4/efl_attribute.m4 b/libraries/eina/m4/efl_attribute.m4 new file mode 100644 index 0000000..78bff15 --- /dev/null +++ b/libraries/eina/m4/efl_attribute.m4 | |||
@@ -0,0 +1,56 @@ | |||
1 | dnl Copyright (C) 2011 Vincent Torri <vtorri at univ-evry dot fr> | ||
2 | dnl That code is public domain and can be freely used or copied. | ||
3 | |||
4 | dnl Macros for checking if the compiler supports some __attribute__ uses | ||
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 | ||
31 | dnl call AC_DEFINE for HAVE_GCC_ATTRIBUTE_VECTOR if __attribute__((vector)) is available | ||
32 | |||
33 | AC_DEFUN([EFL_ATTRIBUTE_VECTOR], | ||
34 | [ | ||
35 | AC_MSG_CHECKING([for __attribute__ ((vector))]) | ||
36 | AC_COMPILE_IFELSE( | ||
37 | [AC_LANG_PROGRAM( | ||
38 | [[ | ||
39 | typedef int v4si __attribute__ ((vector_size (16))); | ||
40 | ]], | ||
41 | [[ | ||
42 | if (sizeof(v4si) == 16) | ||
43 | return 0; | ||
44 | else | ||
45 | return -1; | ||
46 | ]])], | ||
47 | [have_attribute_vector="yes"], | ||
48 | [have_attribute_vector="no"]) | ||
49 | AC_MSG_RESULT([${have_attribute_vector}]) | ||
50 | |||
51 | if test "x${have_attribute_vector}" = "xyes" ; then | ||
52 | AC_DEFINE([HAVE_GCC_ATTRIBUTE_VECTOR], [1], [Define to 1 if your compiler supports __attribute__ ((vector)).]) | ||
53 | fi | ||
54 | ]) | ||
55 | |||
56 | dnl End of efl_attribute.m4 | ||