]> git.cworth.org Git - tar/blob - m4/fchdir.m4
Imported Upstream version 1.21
[tar] / m4 / fchdir.m4
1 # fchdir.m4 serial 6
2 dnl Copyright (C) 2006-2008 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_FCHDIR],
8 [
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10   AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
11   AC_CHECK_FUNCS_ONCE([fchdir])
12   if test $ac_cv_func_fchdir = no; then
13     REPLACE_FCHDIR=1
14     AC_LIBOBJ([fchdir])
15     gl_PREREQ_FCHDIR
16     AC_DEFINE([FCHDIR_REPLACEMENT], 1,
17       [Define if gnulib's fchdir() replacement is used.])
18     gl_REPLACE_OPEN
19     gl_REPLACE_CLOSE
20     gl_REPLACE_DIRENT_H
21   fi
22 ])
23
24 # Prerequisites of lib/fchdir.c.
25 AC_DEFUN([gl_PREREQ_FCHDIR], [:])