From a39ac7869dbef262f6cae1f8b42c908461a3127a Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Thu, 28 Jun 2012 23:01:51 +0000 Subject: [PATCH] Eina: check if fnmatch() is also in libc SVN revision: 73018 --- legacy/eina/m4/common/efl_check_funcs.m4 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/legacy/eina/m4/common/efl_check_funcs.m4 b/legacy/eina/m4/common/efl_check_funcs.m4 index ba221f0928..bee392eda8 100644 --- a/legacy/eina/m4/common/efl_check_funcs.m4 +++ b/legacy/eina/m4/common/efl_check_funcs.m4 @@ -216,8 +216,13 @@ case "$host_os" in _efl_have_fct="yes" ;; *) +dnl Check is fnmatch is in libc + _EFL_CHECK_FUNC_FNMATCH_PRIV([$1], [], [_efl_have_fct="yes"], [_efl_have_fct="no"]) + dnl Check is fnmatch is in libfnmatch - _EFL_CHECK_FUNC_FNMATCH_PRIV([$1], [-lfnmatch], [_efl_have_fct="yes"], [_efl_have_fct="no"]) + if test "x${_efl_have_fct}" = "xno" ; then + _EFL_CHECK_FUNC_FNMATCH_PRIV([$1], [-lfnmatch], [_efl_have_fct="yes"], [_efl_have_fct="no"]) + fi dnl Check is fnmatch is in libiberty if test "x${_efl_have_fct}" = "xno" ; then