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/edje/m4/efl_tests.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/edje/m4/efl_tests.m4 | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/libraries/edje/m4/efl_tests.m4 b/libraries/edje/m4/efl_tests.m4 new file mode 100644 index 0000000..3a4dfe2 --- /dev/null +++ b/libraries/edje/m4/efl_tests.m4 | |||
@@ -0,0 +1,43 @@ | |||
1 | dnl Copyright (C) 2008 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 Macro that check if tests programs are wanted and if yes, if | ||
5 | dnl the Check library is available. | ||
6 | |||
7 | dnl Usage: EFL_CHECK_TESTS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) | ||
8 | dnl Define the automake conditionnal EFL_ENABLE_TESTS | ||
9 | |||
10 | AC_DEFUN([EFL_CHECK_TESTS], | ||
11 | [ | ||
12 | |||
13 | dnl configure option | ||
14 | |||
15 | AC_ARG_ENABLE([tests], | ||
16 | [AC_HELP_STRING([--enable-tests], [enable tests @<:@default=disabled@:>@])], | ||
17 | [ | ||
18 | if test "x${enableval}" = "xyes" ; then | ||
19 | _efl_enable_tests="yes" | ||
20 | else | ||
21 | _efl_enable_tests="no" | ||
22 | fi | ||
23 | ], | ||
24 | [_efl_enable_tests="no"]) | ||
25 | |||
26 | AC_MSG_CHECKING([whether tests are built]) | ||
27 | AC_MSG_RESULT([${_efl_enable_tests}]) | ||
28 | |||
29 | AC_REQUIRE([PKG_PROG_PKG_CONFIG]) | ||
30 | |||
31 | if test "x${_efl_enable_tests}" = "xyes" ; then | ||
32 | PKG_CHECK_MODULES([CHECK], | ||
33 | [check >= 0.9.5], | ||
34 | [dummy="yes"], | ||
35 | [_efl_enable_tests="no"]) | ||
36 | fi | ||
37 | |||
38 | AM_CONDITIONAL(EFL_ENABLE_TESTS, test "x${_efl_enable_tests}" = "xyes") | ||
39 | |||
40 | AS_IF([test "x$_efl_enable_tests" = "xyes"], [$1], [$2]) | ||
41 | ]) | ||
42 | |||
43 | dnl End of efl_tests.m4 | ||