~peter-pearse/ubuntu/natty/cpio/bug001

« back to all changes in this revision

Viewing changes to m4/fcntl_h.m4

  • Committer: Steve Langasek
  • Date: 2010-06-16 04:00:48 UTC
  • mfrom: (10.1.7 squeeze)
  • Revision ID: steve.langasek@canonical.com-20100616040048-3ikgwthvfygg9grl
mergeĀ versionĀ 2.11-4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# serial 11
1
2
# Configure fcntl.h.
2
 
dnl Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
 
3
dnl Copyright (C) 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
3
4
dnl This file is free software; the Free Software Foundation
4
5
dnl gives unlimited permission to copy and/or distribute it,
5
6
dnl with or without modifications, as long as this notice is preserved.
9
10
AC_DEFUN([gl_FCNTL_H],
10
11
[
11
12
  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
12
 
  dnl Persuade glibc <fcntl.h> to define O_NOATIME and O_NOFOLLOW.
13
 
  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
14
 
  AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h],
15
 
    [AC_RUN_IFELSE(
16
 
       [AC_LANG_PROGRAM(
17
 
          [[#include <sys/types.h>
18
 
           #include <sys/stat.h>
19
 
           #include <unistd.h>
20
 
           #include <fcntl.h>
21
 
           #ifndef O_NOATIME
22
 
            #define O_NOATIME 0
23
 
           #endif
24
 
           #ifndef O_NOFOLLOW
25
 
            #define O_NOFOLLOW 0
26
 
           #endif
27
 
           static int const constants[] =
28
 
            {
29
 
              O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND,
30
 
              O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY
31
 
            };
32
 
          ]],
33
 
          [[
34
 
            int status = !constants;
35
 
            {
36
 
              static char const sym[] = "conftest.sym";
37
 
              if (symlink (".", sym) != 0
38
 
                  || close (open (sym, O_RDONLY | O_NOFOLLOW)) == 0)
39
 
                status |= 32;
40
 
            }
41
 
            {
42
 
              static char const file[] = "confdefs.h";
43
 
              int fd = open (file, O_RDONLY | O_NOATIME);
44
 
              char c;
45
 
              struct stat st0, st1;
46
 
              if (fd < 0
47
 
                  || fstat (fd, &st0) != 0
48
 
                  || sleep (1) != 0
49
 
                  || read (fd, &c, 1) != 1
50
 
                  || close (fd) != 0
51
 
                  || stat (file, &st1) != 0
52
 
                  || st0.st_atime != st1.st_atime)
53
 
                status |= 64;
54
 
            }
55
 
            return status;]])],
56
 
       [gl_cv_header_working_fcntl_h=yes],
57
 
       [case $? in #(
58
 
        32) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #(
59
 
        64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #(
60
 
        96) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #(
61
 
         *) gl_cv_header_working_fcntl_h='no';;
62
 
        esac],
63
 
       [gl_cv_header_working_fcntl_h=cross-compiling])])
64
 
 
65
 
  case $gl_cv_header_working_fcntl_h in #(
66
 
  *O_NOATIME* | no | cross-compiling) ac_val=0;; #(
67
 
  *) ac_val=1;;
68
 
  esac
69
 
  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOATIME], [$ac_val],
70
 
    [Define to 1 if O_NOATIME works.])
71
 
 
72
 
  case $gl_cv_header_working_fcntl_h in #(
73
 
  *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #(
74
 
  *) ac_val=1;;
75
 
  esac
76
 
  AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOFOLLOW], [$ac_val],
77
 
    [Define to 1 if O_NOFOLLOW works.])
78
 
 
 
13
  AC_REQUIRE([gl_FCNTL_O_FLAGS])
79
14
  gl_CHECK_NEXT_HEADERS([fcntl.h])
80
 
  FCNTL_H='fcntl.h'
81
 
  AC_SUBST([FCNTL_H])
 
15
 
 
16
  dnl Check for declarations of anything we want to poison if the
 
17
  dnl corresponding gnulib module is not in use, if it is not common
 
18
  dnl enough to be declared everywhere.
 
19
  gl_WARN_ON_USE_PREPARE([[#include <fcntl.h>
 
20
    ]], [fcntl openat])
82
21
])
83
22
 
84
23
AC_DEFUN([gl_FCNTL_MODULE_INDICATOR],
86
25
  dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
87
26
  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
88
27
  GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1
 
28
  dnl Define it also as a C macro, for the benefit of the unit tests.
 
29
  gl_MODULE_INDICATOR([$1])
89
30
])
90
31
 
91
32
AC_DEFUN([gl_FCNTL_H_DEFAULTS],
92
33
[
93
 
  GNULIB_OPEN=0;  AC_SUBST([GNULIB_OPEN])
 
34
  GNULIB_FCNTL=0;   AC_SUBST([GNULIB_FCNTL])
 
35
  GNULIB_OPEN=0;    AC_SUBST([GNULIB_OPEN])
 
36
  GNULIB_OPENAT=0;  AC_SUBST([GNULIB_OPENAT])
94
37
  dnl Assume proper GNU behavior unless another module says otherwise.
95
 
  REPLACE_OPEN=0; AC_SUBST([REPLACE_OPEN])
 
38
  HAVE_FCNTL=1;     AC_SUBST([HAVE_FCNTL])
 
39
  HAVE_OPENAT=1;    AC_SUBST([HAVE_OPENAT])
 
40
  REPLACE_FCNTL=0;  AC_SUBST([REPLACE_FCNTL])
 
41
  REPLACE_OPEN=0;   AC_SUBST([REPLACE_OPEN])
 
42
  REPLACE_OPENAT=0; AC_SUBST([REPLACE_OPENAT])
96
43
])