A typo was causing spurious rejection of fdopendir.
* m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
Signed-off-by: Eric Blake <ebb9@byu.net>
+2010-01-04 Eric Blake <ebb9@byu.net>
+
+ fdopendir: fix configure test
+ * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
+
2010-01-01 Bruno Haible <bruno@clisp.org>
wchar: Remove unused configure check.
-# serial 2
+# serial 3
# See if we need to provide fdopendir.
dnl Copyright (C) 2009-2010 Free Software Foundation, Inc.
[AC_RUN_IFELSE([AC_LANG_PROGRAM([[
#include <dirent.h>
#include <fcntl.h>
-]], [int fd = open ("conftest.h", O_RDONLY);
+]], [int fd = open ("conftest.c", O_RDONLY);
if (fd < 0) return 2;
return !!fdopendir (fd);])],
[gl_cv_func_fdopendir_works=yes],