~ubuntu-branches/ubuntu/precise/parted/precise

« back to all changes in this revision

Viewing changes to gnulib/m4/fchdir.m4

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-02-06 16:39:19 UTC
  • mfrom: (1.1.5 upstream)
  • mto: (7.3.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 48.
  • Revision ID: james.westby@ubuntu.com-20100206163919-nsxr2vtchk0ecabf
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# fchdir.m4 serial 4
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_UNISTD_H_DEFAULTS])
10
 
  AC_CHECK_FUNCS_ONCE([fchdir])
11
 
  if test $ac_cv_func_fchdir = no; then
12
 
    REPLACE_FCHDIR=1
13
 
    AC_LIBOBJ([fchdir])
14
 
    gl_PREREQ_FCHDIR
15
 
    AC_DEFINE([FCHDIR_REPLACEMENT], 1,
16
 
      [Define if gnulib's fchdir() replacement is used.])
17
 
    gl_CHECK_NEXT_HEADERS([dirent.h])
18
 
    DIRENT_H='dirent.h'
19
 
  else
20
 
    DIRENT_H=
21
 
  fi
22
 
  AC_SUBST([DIRENT_H])
23
 
])
24
 
 
25
 
# Prerequisites of lib/fchdir.c.
26
 
AC_DEFUN([gl_PREREQ_FCHDIR], [:])