~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to m4/fchdir.m4

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# fchdir.m4 serial 17
2
 
dnl Copyright (C) 2006-2011 Free Software Foundation, Inc.
 
1
# fchdir.m4 serial 21
 
2
dnl Copyright (C) 2006-2012 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
8
8
[
9
9
  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10
10
  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
11
 
  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
 
11
  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
12
12
 
13
13
  AC_CHECK_DECLS_ONCE([fchdir])
14
14
  if test $ac_cv_have_decl_fchdir = no; then
24
24
    dnl We must also replace anything that can manipulate a directory fd,
25
25
    dnl to keep our bookkeeping up-to-date.  We don't have to replace
26
26
    dnl fstatat, since no platform has fstatat but lacks fchdir.
27
 
    REPLACE_OPENDIR=1
28
 
    REPLACE_CLOSEDIR=1
29
 
    REPLACE_DUP=1
30
27
    AC_CACHE_CHECK([whether open can visit directories],
31
28
      [gl_cv_func_open_directory_works],
32
29
      [AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <fcntl.h>
33
30
]], [return open(".", O_RDONLY) < 0;])],
34
31
        [gl_cv_func_open_directory_works=yes],
35
32
        [gl_cv_func_open_directory_works=no],
36
 
        [gl_cv_func_open_directory_works="guessing no"])])
37
 
    if test "$gl_cv_func_open_directory_works" != yes; then
38
 
      AC_DEFINE([REPLACE_OPEN_DIRECTORY], [1], [Define to 1 if open() should
 
33
        [case "$host_os" in
 
34
                   # Guess yes on glibc systems.
 
35
           *-gnu*) gl_cv_func_open_directory_works="guessing yes" ;;
 
36
                   # If we don't know, assume the worst.
 
37
           *)      gl_cv_func_open_directory_works="guessing no" ;;
 
38
         esac
 
39
        ])])
 
40
    case "$gl_cv_func_open_directory_works" in
 
41
      *yes) ;;
 
42
      *)
 
43
        AC_DEFINE([REPLACE_OPEN_DIRECTORY], [1], [Define to 1 if open() should
39
44
work around the inability to open a directory.])
40
 
      REPLACE_FSTAT=1
41
 
    fi
 
45
        ;;
 
46
    esac
42
47
  fi
43
48
])
44
49