# serial 1 # See if we need to provide utimensat replacement. dnl Copyright (C) 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, dnl with or without modifications, as long as this notice is preserved. # Written by Eric Blake. AC_DEFUN([gl_FUNC_UTIMENSAT], [ AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS]) AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) AC_CHECK_FUNCS_ONCE([utimensat]) if test $ac_cv_func_utimensat = no; then HAVE_UTIMENSAT=0 AC_LIBOBJ([utimensat]) else AC_CACHE_CHECK([whether utimensat works], [gl_cv_func_utimensat_works], [AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include #include #ifdef __linux__ /* The Linux kernel added utimensat in 2.6.22, but it had bugs until 2.6.26. Always replace utimensat to support older kernels. */ choke me #endif ]], [[struct timespec ts[2] = { { 1, UTIME_OMIT }, { 1, UTIME_OMIT } }; return utimensat (AT_FDCWD, ".", NULL, AT_SYMLINK_NOFOLLOW);]])], [gl_cv_func_utimensat_works=yes], [gl_cv_func_utimensat_works="needs runtime check"], [gl_cv_func_utimensat_works="guessing no"])]) if test "$gl_cv_func_utimensat_works" != yes; then REPLACE_UTIMENSAT=1 AC_LIBOBJ([utimensat]) fi fi ])