1dnl Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
2dnl This file is free software; the Free Software Foundation
3dnl gives unlimited permission to copy and/or distribute it,
4dnl with or without modifications, as long as this notice is preserved.
5
6AC_DEFUN([gl_UTIMENS],
7[
8  AC_LIBOBJ([utimens])
9
10  dnl Prerequisites of lib/utimens.c.
11  AC_REQUIRE([gl_FUNC_UTIMES])
12  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_TIMESPEC])
13  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_UTIMBUF])
14  AC_CHECK_FUNCS_ONCE([futimes futimesat])
15])
16