2006-09-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+ * fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
+ always true.
+ * strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
+
* sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
2006-09-17 Bruno Haible <bruno@clisp.org>
}
],
[exit
- (!((fnm ? fnm : fnmatch) ("a*", "", 0) == FNM_NOMATCH
+ (!(fnm ("a*", "", 0) == FNM_NOMATCH
&& y ("a*", "abc", 0)
&& n ("d*/*1", "d/s/1", FNM_PATHNAME)
&& y ("a\\\\bc", "abc", 0)
-# strndup.m4 serial 8
+# strndup.m4 serial 9
dnl Copyright (C) 2002-2003, 2005-2006 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
# AIX 4.3.3, AIX 5.1 have a function that fails to add the terminating '\0'.
AC_CACHE_CHECK([for working strndup], gl_cv_func_strndup,
[AC_RUN_IFELSE([
- AC_LANG_PROGRAM([#include <string.h>], [[
+ AC_LANG_PROGRAM([#include <string.h>
+ #include <stdlib.h>], [[
#ifndef HAVE_DECL_STRNDUP
extern char *strndup (const char *, size_t);
#endif