maint: update copyright
[gnulib.git] / m4 / renameat.m4
1 # serial 3
2 # See if we need to provide renameat replacement.
3
4 dnl Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 dnl This file is free software; the Free Software Foundation
6 dnl gives unlimited permission to copy and/or distribute it,
7 dnl with or without modifications, as long as this notice is preserved.
8
9 # Written by Eric Blake.
10
11 AC_DEFUN([gl_FUNC_RENAMEAT],
12 [
13   AC_REQUIRE([gl_FUNC_OPENAT])
14   AC_REQUIRE([gl_FUNC_RENAME])
15   AC_REQUIRE([gl_STDIO_H_DEFAULTS])
16   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
17   AC_CHECK_FUNCS_ONCE([renameat])
18   if test $ac_cv_func_renameat = no; then
19     HAVE_RENAMEAT=0
20   elif test $REPLACE_RENAME = 1; then
21     dnl Solaris 9 and 10 have the same bugs in renameat as in rename.
22     REPLACE_RENAMEAT=1
23   fi
24 ])