+2009-10-31 Eric Blake <ebb9@byu.net>
+
+ fseeko: fix m4 regression
+ * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro. Fixes
+ regression from 2009-10-27.
+ Reported by Ralf Wildenhues.
+
2009-10-31 Jim Meyering <meyering@redhat.com>
inttostr: aesthetics and improved (compile-time) safety
-# fseeko.m4 serial 5
+# fseeko.m4 serial 6
dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
AC_CACHE_CHECK([for fseeko], [gl_cv_func_fseeko],
[
- AC_TRY_LINK([[#include <stdio.h>]], [fseeko (stdin, 0, 0);],
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
+]], [fseeko (stdin, 0, 0);])],
[gl_cv_func_fseeko=yes], [gl_cv_func_fseeko=no])
])
if test $gl_cv_func_fseeko = no; then