diff options
author | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-04-22 09:19:23 +1000 |
commit | c963d75dfdeec11f82e79e727062fbf89afa2c04 (patch) | |
tree | 895633dbf641110be46f117c29890c49b3ffc0bd /libraries/eet/m4 | |
parent | Adding the new extantz viewer and grid manager. (diff) | |
download | SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.zip SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.gz SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.bz2 SledjHamr-c963d75dfdeec11f82e79e727062fbf89afa2c04.tar.xz |
Update EFL to latest beta.
Diffstat (limited to '')
-rw-r--r-- | libraries/eet/m4/efl_fnmatch.m4 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/eet/m4/efl_fnmatch.m4 b/libraries/eet/m4/efl_fnmatch.m4 index a92ac6b..b5555ee 100644 --- a/libraries/eet/m4/efl_fnmatch.m4 +++ b/libraries/eet/m4/efl_fnmatch.m4 | |||
@@ -24,6 +24,18 @@ if (! test "x${ac_cv_search_fnmatch}" = "xnone required") && (! test "x${ac_cv_s | |||
24 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} | 24 | EFL_FNMATCH_LIBS=${ac_cv_search_fnmatch} |
25 | fi | 25 | fi |
26 | 26 | ||
27 | if test "x${_efl_have_fnmatch}" != "xyes" -a "x${enable_exotic}" = "xyes"; then | ||
28 | LDFLAGS_SAVE="$LDFLAGS" | ||
29 | LDFLAGS="$LDFLAGS $EXOTIC_LIBS" | ||
30 | AC_CHECK_LIB([exotic], [fnmatch], | ||
31 | [_efl_have_fnmatch="yes"], | ||
32 | [_efl_have_fnmatch="no"]) | ||
33 | |||
34 | if test "x${_efl_have_fnmatch}" = "xyes"; then | ||
35 | EFL_FNMATCH_LIBS="exotic" | ||
36 | fi | ||
37 | fi | ||
38 | |||
27 | AC_SUBST(EFL_FNMATCH_LIBS) | 39 | AC_SUBST(EFL_FNMATCH_LIBS) |
28 | 40 | ||
29 | AS_IF([test "x$_efl_have_fnmatch" = "xyes"], [$1], [$2]) | 41 | AS_IF([test "x$_efl_have_fnmatch" = "xyes"], [$1], [$2]) |