~ubuntu-branches/ubuntu/vivid/gzip/vivid

« back to all changes in this revision

Viewing changes to m4/openat.m4

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-10-19 11:42:42 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20111019114242-d8wiiu8kbvdtgmgj
Tags: 1.4-1ubuntu1
* Merge with Debian testing.  Remaining Ubuntu changes:
  - debian/{control,rules}: Remove the Win32 build and mingw64
    build-dependency, since mingw is in universe, and will remain so for
    the forseeable future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# serial 27
 
2
# See if we need to use our replacement for Solaris' openat et al functions.
 
3
 
 
4
dnl Copyright (C) 2004-2010 Free Software Foundation, Inc.
 
5
dnl This file is free software; the Free Software Foundation
 
6
dnl gives unlimited permission to copy and/or distribute it,
 
7
dnl with or without modifications, as long as this notice is preserved.
 
8
 
 
9
# Written by Jim Meyering.
 
10
 
 
11
AC_DEFUN([gl_FUNC_OPENAT],
 
12
[
 
13
  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
 
14
  GNULIB_OPENAT=1
 
15
 
 
16
  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
 
17
  GNULIB_FCHMODAT=1
 
18
  GNULIB_FSTATAT=1
 
19
  GNULIB_MKDIRAT=1
 
20
 
 
21
  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
 
22
  GNULIB_FCHOWNAT=1
 
23
  GNULIB_UNLINKAT=1
 
24
 
 
25
  AC_LIBOBJ([openat-proc])
 
26
  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
 
27
  AC_CHECK_FUNCS_ONCE([lchmod])
 
28
  AC_REPLACE_FUNCS([fchmodat fstatat mkdirat openat unlinkat])
 
29
  AC_REQUIRE([AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK])
 
30
  AC_REQUIRE([gl_FUNC_UNLINK])
 
31
  case $ac_cv_func_openat+$ac_cv_func_lstat_dereferences_slashed_symlink in
 
32
  yes+yes)
 
33
    # GNU/Hurd has unlinkat, but it has the same bug as unlink.
 
34
    if test $REPLACE_UNLINK = 1; then
 
35
      AC_LIBOBJ([unlinkat])
 
36
      REPLACE_UNLINKAT=1
 
37
    fi ;;
 
38
  yes+*)
 
39
    # Solaris 9 has *at functions, but uniformly mishandles trailing
 
40
    # slash in all of them.
 
41
    AC_LIBOBJ([openat])
 
42
    REPLACE_OPENAT=1
 
43
    AC_LIBOBJ([fstatat])
 
44
    REPLACE_FSTATAT=1
 
45
    AC_LIBOBJ([unlinkat])
 
46
    REPLACE_UNLINKAT=1
 
47
    ;;
 
48
  *)
 
49
    HAVE_OPENAT=0
 
50
    HAVE_UNLINKAT=0 # No known system with unlinkat but not openat
 
51
    HAVE_FSTATAT=0 # No known system with fstatat but not openat
 
52
    gl_PREREQ_OPENAT;;
 
53
  esac
 
54
  if test $ac_cv_func_fchmodat != yes; then
 
55
    HAVE_FCHMODAT=0
 
56
  fi
 
57
  if test $ac_cv_func_mkdirat != yes; then
 
58
    HAVE_MKDIRAT=0
 
59
  fi
 
60
  gl_FUNC_FCHOWNAT
 
61
])
 
62
 
 
63
# gl_FUNC_FCHOWNAT_DEREF_BUG([ACTION-IF-BUGGY[, ACTION-IF-NOT_BUGGY]])
 
64
AC_DEFUN([gl_FUNC_FCHOWNAT_DEREF_BUG],
 
65
[
 
66
  AC_CACHE_CHECK([whether fchownat works with AT_SYMLINK_NOFOLLOW],
 
67
    gl_cv_func_fchownat_nofollow_works,
 
68
    [
 
69
     gl_dangle=conftest.dangle
 
70
     # Remove any remnants of a previous test.
 
71
     rm -f $gl_dangle
 
72
     # Arrange for deletion of the temporary file this test creates.
 
73
     ac_clean_files="$ac_clean_files $gl_dangle"
 
74
     ln -s conftest.no-such $gl_dangle
 
75
     AC_RUN_IFELSE(
 
76
       [AC_LANG_SOURCE(
 
77
          [[
 
78
#include <fcntl.h>
 
79
#include <unistd.h>
 
80
#include <stdlib.h>
 
81
#include <errno.h>
 
82
#include <sys/types.h>
 
83
int
 
84
main ()
 
85
{
 
86
  return (fchownat (AT_FDCWD, "$gl_dangle", -1, getgid (),
 
87
                    AT_SYMLINK_NOFOLLOW) != 0
 
88
          && errno == ENOENT);
 
89
}
 
90
          ]])],
 
91
    [gl_cv_func_fchownat_nofollow_works=yes],
 
92
    [gl_cv_func_fchownat_nofollow_works=no],
 
93
    [gl_cv_func_fchownat_nofollow_works=no],
 
94
    )
 
95
  ])
 
96
  AS_IF([test $gl_cv_func_fchownat_nofollow_works = no], [$1], [$2])
 
97
])
 
98
 
 
99
# If we have the fchownat function, and it has the bug (in glibc-2.4)
 
100
# that it dereferences symlinks even with AT_SYMLINK_NOFOLLOW, then
 
101
# use the replacement function.
 
102
# Also use the replacement function if fchownat is simply not available.
 
103
AC_DEFUN([gl_FUNC_FCHOWNAT],
 
104
[
 
105
  AC_REQUIRE([gl_FUNC_CHOWN])
 
106
  AC_CHECK_FUNC([fchownat],
 
107
    [gl_FUNC_FCHOWNAT_DEREF_BUG([REPLACE_FCHOWNAT=1
 
108
      AC_DEFINE([FCHOWNAT_NOFOLLOW_BUG], [1], [Define to 1 if your
 
109
      platform has fchownat, but it cannot perform lchown tasks.])])],
 
110
    [HAVE_FCHOWNAT=0])
 
111
  if test $REPLACE_CHOWN = 1; then
 
112
    REPLACE_FCHOWNAT=1
 
113
  fi
 
114
  if test $HAVE_FCHOWNAT = 0 || test $REPLACE_FCHOWNAT = 1; then
 
115
    AC_LIBOBJ([fchownat])
 
116
  fi
 
117
])
 
118
 
 
119
AC_DEFUN([gl_PREREQ_OPENAT],
 
120
[
 
121
  AC_REQUIRE([AC_C_INLINE])
 
122
  AC_REQUIRE([gl_PROMOTED_TYPE_MODE_T])
 
123
  :
 
124
])