Simplify macrology that creates unistd.h.
[gnulib.git] / m4 / fchdir.m4
1 # fchdir.m4 serial 2
2 dnl Copyright (C) 2006-2007 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_HEADER_UNISTD_DEFAULTS])
10   AC_CHECK_FUNCS_ONCE([fchdir])
11   if test $ac_cv_func_fchdir = no; then
12     AC_LIBOBJ([fchdir])
13     gl_PREREQ_FCHDIR
14     AC_DEFINE([FCHDIR_REPLACEMENT], 1,
15       [Define if gnulib's fchdir() replacement is used.])
16     gl_ABSOLUTE_HEADER([dirent.h])
17     ABSOLUTE_DIRENT_H=\"$gl_cv_absolute_dirent_h\"
18     DIRENT_H='dirent.h'
19     UNISTD_H='unistd.h'
20   else
21     DIRENT_H=
22   fi
23   AC_SUBST([ABSOLUTE_DIRENT_H])
24   AC_SUBST([DIRENT_H])
25 ])
26
27 # Prerequisites of lib/fchdir.c.
28 AC_DEFUN([gl_PREREQ_FCHDIR], [:])