Fix last ChangeLog entry.
[gnulib.git] / m4 / renameat.m4
blob69a6a59939d4b1bc29309d6530bd29160347134b
1 # serial 3
2 # See if we need to provide renameat replacement.
4 dnl Copyright (C) 2009-2021 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.
9 # Written by Eric Blake.
11 AC_DEFUN([gl_FUNC_RENAMEAT],
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_HEADERS([linux/fs.h])
18   AC_CHECK_FUNCS_ONCE([renameat renameat2])
19   if test $ac_cv_func_renameat = no; then
20     HAVE_RENAMEAT=0
21   elif test $REPLACE_RENAME = 1; then
22     dnl Solaris 9 and 10 have the same bugs in renameat as in rename.
23     REPLACE_RENAMEAT=1
24   fi