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