# HG changeset patch # User Bruno Haible # Date 1241259580 -7200 # Node ID e48826dddb3a600815dc55801a1b5b273e515ee6 # Parent a9625a24d8bf32fd03b200fe6f936c57c65cf908 Modernize fnmatch detection macro. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-05-02 Bruno Haible + + * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of + "cross". + (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that + gnulib-tool was called with option --source-base=lib. + 2009-05-02 Ralf Wildenhues Use automake *-local hooks without commands, for extensibility. diff --git a/m4/fnmatch.m4 b/m4/fnmatch.m4 --- a/m4/fnmatch.m4 +++ b/m4/fnmatch.m4 @@ -1,4 +1,4 @@ -# Check for fnmatch - serial 2. +# Check for fnmatch - serial 3. # Copyright (C) 2000-2007, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation @@ -70,8 +70,8 @@ 1))[;]])], [$2=yes], [$2=no], - [$2=cross])]) -AS_IF([test $$2 = yes], [$3], [$4]) + [$2="guessing no"])]) +AS_IF([test "$$2" = yes], [$3], [$4]) ])# _AC_FUNC_FNMATCH_IF @@ -93,9 +93,9 @@ [ FNMATCH_H= _AC_FUNC_FNMATCH_IF([POSIX], [ac_cv_func_fnmatch_posix], - [rm -f lib/fnmatch.h], + [rm -f "$gl_source_base/fnmatch.h"], [_AC_LIBOBJ_FNMATCH]) - if test $ac_cv_func_fnmatch_posix != yes; then + if test "$ac_cv_func_fnmatch_posix" != yes; then dnl We must choose a different name for our function, since on ELF systems dnl a broken fnmatch() in libc.so would override our fnmatch() if it is dnl compiled into a shared library. @@ -113,9 +113,9 @@ FNMATCH_H= _AC_FUNC_FNMATCH_IF([GNU], [ac_cv_func_fnmatch_gnu], - [rm -f lib/fnmatch.h], + [rm -f "$gl_source_base/fnmatch.h"], [_AC_LIBOBJ_FNMATCH]) - if test $ac_cv_func_fnmatch_gnu != yes; then + if test "$ac_cv_func_fnmatch_gnu" != yes; then dnl We must choose a different name for our function, since on ELF systems dnl a broken fnmatch() in libc.so would override our fnmatch() if it is dnl compiled into a shared library.