]> git.cworth.org Git - tar/blob - m4/renameat.m4
Imported Upstream version 1.24
[tar] / m4 / renameat.m4
1 # serial 2
2 # See if we need to provide renameat replacement.
3
4 dnl Copyright (C) 2009-2010 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     AC_LIBOBJ([renameat])
21     AC_LIBOBJ([at-func2])
22   elif test $REPLACE_RENAME = 1; then
23     dnl Solaris 9 and 10 have the same bugs in renameat as in rename.
24     REPLACE_RENAMEAT=1
25     AC_LIBOBJ([renameat])
26     AC_LIBOBJ([at-func2])
27   fi
28 ])