112311
|
1 # unistd_h.m4 serial 52
|
|
2 dnl Copyright (C) 2006-2011 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 dnl Written by Simon Josefsson, Bruno Haible.
|
|
8
|
|
9 AC_DEFUN([gl_UNISTD_H],
|
|
10 [
|
|
11 dnl Use AC_REQUIRE here, so that the default behavior below is expanded
|
|
12 dnl once only, before all statements that occur in other macros.
|
|
13 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
|
|
14 AC_REQUIRE([AC_C_INLINE])
|
|
15
|
|
16 gl_CHECK_NEXT_HEADERS([unistd.h])
|
|
17
|
|
18 AC_CHECK_HEADERS_ONCE([unistd.h])
|
|
19 if test $ac_cv_header_unistd_h = yes; then
|
|
20 HAVE_UNISTD_H=1
|
|
21 else
|
|
22 HAVE_UNISTD_H=0
|
|
23 fi
|
|
24 AC_SUBST([HAVE_UNISTD_H])
|
|
25
|
|
26 dnl Check for declarations of anything we want to poison if the
|
|
27 dnl corresponding gnulib module is not in use.
|
|
28 gl_WARN_ON_USE_PREPARE([[#include <unistd.h>
|
|
29 /* Some systems declare various items in the wrong headers. */
|
|
30 #if !(defined __GLIBC__ && !defined __UCLIBC__)
|
|
31 # include <fcntl.h>
|
|
32 # include <stdio.h>
|
|
33 # include <stdlib.h>
|
|
34 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
|
|
35 # include <io.h>
|
|
36 # endif
|
|
37 #endif
|
|
38 ]], [chown dup2 dup3 environ euidaccess faccessat fchdir fchownat
|
|
39 fsync ftruncate getcwd getdomainname getdtablesize getgroups
|
|
40 gethostname getlogin getlogin_r getpagesize getusershell setusershell
|
|
41 endusershell lchown link linkat lseek pipe pipe2 pread pwrite readlink
|
|
42 readlinkat rmdir sleep symlink symlinkat ttyname_r unlink unlinkat
|
|
43 usleep])
|
|
44 ])
|
|
45
|
|
46 AC_DEFUN([gl_UNISTD_MODULE_INDICATOR],
|
|
47 [
|
|
48 dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
|
|
49 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
|
|
50 gl_MODULE_INDICATOR_SET_VARIABLE([$1])
|
|
51 dnl Define it also as a C macro, for the benefit of the unit tests.
|
|
52 gl_MODULE_INDICATOR_FOR_TESTS([$1])
|
|
53 ])
|
|
54
|
|
55 AC_DEFUN([gl_UNISTD_H_DEFAULTS],
|
|
56 [
|
|
57 GNULIB_CHOWN=0; AC_SUBST([GNULIB_CHOWN])
|
|
58 GNULIB_CLOSE=0; AC_SUBST([GNULIB_CLOSE])
|
|
59 GNULIB_DUP2=0; AC_SUBST([GNULIB_DUP2])
|
|
60 GNULIB_DUP3=0; AC_SUBST([GNULIB_DUP3])
|
|
61 GNULIB_ENVIRON=0; AC_SUBST([GNULIB_ENVIRON])
|
|
62 GNULIB_EUIDACCESS=0; AC_SUBST([GNULIB_EUIDACCESS])
|
|
63 GNULIB_FACCESSAT=0; AC_SUBST([GNULIB_FACCESSAT])
|
|
64 GNULIB_FCHDIR=0; AC_SUBST([GNULIB_FCHDIR])
|
|
65 GNULIB_FCHOWNAT=0; AC_SUBST([GNULIB_FCHOWNAT])
|
|
66 GNULIB_FSYNC=0; AC_SUBST([GNULIB_FSYNC])
|
|
67 GNULIB_FTRUNCATE=0; AC_SUBST([GNULIB_FTRUNCATE])
|
|
68 GNULIB_GETCWD=0; AC_SUBST([GNULIB_GETCWD])
|
|
69 GNULIB_GETDOMAINNAME=0; AC_SUBST([GNULIB_GETDOMAINNAME])
|
|
70 GNULIB_GETDTABLESIZE=0; AC_SUBST([GNULIB_GETDTABLESIZE])
|
|
71 GNULIB_GETGROUPS=0; AC_SUBST([GNULIB_GETGROUPS])
|
|
72 GNULIB_GETHOSTNAME=0; AC_SUBST([GNULIB_GETHOSTNAME])
|
|
73 GNULIB_GETLOGIN=0; AC_SUBST([GNULIB_GETLOGIN])
|
|
74 GNULIB_GETLOGIN_R=0; AC_SUBST([GNULIB_GETLOGIN_R])
|
|
75 GNULIB_GETPAGESIZE=0; AC_SUBST([GNULIB_GETPAGESIZE])
|
|
76 GNULIB_GETUSERSHELL=0; AC_SUBST([GNULIB_GETUSERSHELL])
|
|
77 GNULIB_LCHOWN=0; AC_SUBST([GNULIB_LCHOWN])
|
|
78 GNULIB_LINK=0; AC_SUBST([GNULIB_LINK])
|
|
79 GNULIB_LINKAT=0; AC_SUBST([GNULIB_LINKAT])
|
|
80 GNULIB_LSEEK=0; AC_SUBST([GNULIB_LSEEK])
|
|
81 GNULIB_PIPE=0; AC_SUBST([GNULIB_PIPE])
|
|
82 GNULIB_PIPE2=0; AC_SUBST([GNULIB_PIPE2])
|
|
83 GNULIB_PREAD=0; AC_SUBST([GNULIB_PREAD])
|
|
84 GNULIB_PWRITE=0; AC_SUBST([GNULIB_PWRITE])
|
|
85 GNULIB_READLINK=0; AC_SUBST([GNULIB_READLINK])
|
|
86 GNULIB_READLINKAT=0; AC_SUBST([GNULIB_READLINKAT])
|
|
87 GNULIB_RMDIR=0; AC_SUBST([GNULIB_RMDIR])
|
|
88 GNULIB_SLEEP=0; AC_SUBST([GNULIB_SLEEP])
|
|
89 GNULIB_SYMLINK=0; AC_SUBST([GNULIB_SYMLINK])
|
|
90 GNULIB_SYMLINKAT=0; AC_SUBST([GNULIB_SYMLINKAT])
|
|
91 GNULIB_TTYNAME_R=0; AC_SUBST([GNULIB_TTYNAME_R])
|
|
92 GNULIB_UNISTD_H_GETOPT=0; AC_SUBST([GNULIB_UNISTD_H_GETOPT])
|
|
93 GNULIB_UNISTD_H_SIGPIPE=0; AC_SUBST([GNULIB_UNISTD_H_SIGPIPE])
|
|
94 GNULIB_UNLINK=0; AC_SUBST([GNULIB_UNLINK])
|
|
95 GNULIB_UNLINKAT=0; AC_SUBST([GNULIB_UNLINKAT])
|
|
96 GNULIB_USLEEP=0; AC_SUBST([GNULIB_USLEEP])
|
|
97 GNULIB_WRITE=0; AC_SUBST([GNULIB_WRITE])
|
|
98 dnl Assume proper GNU behavior unless another module says otherwise.
|
|
99 HAVE_CHOWN=1; AC_SUBST([HAVE_CHOWN])
|
|
100 HAVE_DUP2=1; AC_SUBST([HAVE_DUP2])
|
|
101 HAVE_DUP3=1; AC_SUBST([HAVE_DUP3])
|
|
102 HAVE_EUIDACCESS=1; AC_SUBST([HAVE_EUIDACCESS])
|
|
103 HAVE_FACCESSAT=1; AC_SUBST([HAVE_FACCESSAT])
|
|
104 HAVE_FCHDIR=1; AC_SUBST([HAVE_FCHDIR])
|
|
105 HAVE_FCHOWNAT=1; AC_SUBST([HAVE_FCHOWNAT])
|
|
106 HAVE_FSYNC=1; AC_SUBST([HAVE_FSYNC])
|
|
107 HAVE_FTRUNCATE=1; AC_SUBST([HAVE_FTRUNCATE])
|
|
108 HAVE_GETDTABLESIZE=1; AC_SUBST([HAVE_GETDTABLESIZE])
|
|
109 HAVE_GETGROUPS=1; AC_SUBST([HAVE_GETGROUPS])
|
|
110 HAVE_GETHOSTNAME=1; AC_SUBST([HAVE_GETHOSTNAME])
|
|
111 HAVE_GETLOGIN=1; AC_SUBST([HAVE_GETLOGIN])
|
|
112 HAVE_GETPAGESIZE=1; AC_SUBST([HAVE_GETPAGESIZE])
|
|
113 HAVE_LCHOWN=1; AC_SUBST([HAVE_LCHOWN])
|
|
114 HAVE_LINK=1; AC_SUBST([HAVE_LINK])
|
|
115 HAVE_LINKAT=1; AC_SUBST([HAVE_LINKAT])
|
|
116 HAVE_PIPE=1; AC_SUBST([HAVE_PIPE])
|
|
117 HAVE_PIPE2=1; AC_SUBST([HAVE_PIPE2])
|
|
118 HAVE_PREAD=1; AC_SUBST([HAVE_PREAD])
|
|
119 HAVE_PWRITE=1; AC_SUBST([HAVE_PWRITE])
|
|
120 HAVE_READLINK=1; AC_SUBST([HAVE_READLINK])
|
|
121 HAVE_READLINKAT=1; AC_SUBST([HAVE_READLINKAT])
|
|
122 HAVE_SLEEP=1; AC_SUBST([HAVE_SLEEP])
|
|
123 HAVE_SYMLINK=1; AC_SUBST([HAVE_SYMLINK])
|
|
124 HAVE_SYMLINKAT=1; AC_SUBST([HAVE_SYMLINKAT])
|
|
125 HAVE_UNLINKAT=1; AC_SUBST([HAVE_UNLINKAT])
|
|
126 HAVE_USLEEP=1; AC_SUBST([HAVE_USLEEP])
|
|
127 HAVE_DECL_ENVIRON=1; AC_SUBST([HAVE_DECL_ENVIRON])
|
|
128 HAVE_DECL_FCHDIR=1; AC_SUBST([HAVE_DECL_FCHDIR])
|
|
129 HAVE_DECL_GETDOMAINNAME=1; AC_SUBST([HAVE_DECL_GETDOMAINNAME])
|
|
130 HAVE_DECL_GETLOGIN_R=1; AC_SUBST([HAVE_DECL_GETLOGIN_R])
|
|
131 HAVE_DECL_GETPAGESIZE=1; AC_SUBST([HAVE_DECL_GETPAGESIZE])
|
|
132 HAVE_DECL_GETUSERSHELL=1; AC_SUBST([HAVE_DECL_GETUSERSHELL])
|
|
133 HAVE_DECL_TTYNAME_R=1; AC_SUBST([HAVE_DECL_TTYNAME_R])
|
|
134 HAVE_OS_H=0; AC_SUBST([HAVE_OS_H])
|
|
135 HAVE_SYS_PARAM_H=0; AC_SUBST([HAVE_SYS_PARAM_H])
|
|
136 REPLACE_CHOWN=0; AC_SUBST([REPLACE_CHOWN])
|
|
137 REPLACE_CLOSE=0; AC_SUBST([REPLACE_CLOSE])
|
|
138 REPLACE_DUP=0; AC_SUBST([REPLACE_DUP])
|
|
139 REPLACE_DUP2=0; AC_SUBST([REPLACE_DUP2])
|
|
140 REPLACE_FCHOWNAT=0; AC_SUBST([REPLACE_FCHOWNAT])
|
|
141 REPLACE_GETCWD=0; AC_SUBST([REPLACE_GETCWD])
|
|
142 REPLACE_GETDOMAINNAME=0; AC_SUBST([REPLACE_GETDOMAINNAME])
|
|
143 REPLACE_GETLOGIN_R=0; AC_SUBST([REPLACE_GETLOGIN_R])
|
|
144 REPLACE_GETGROUPS=0; AC_SUBST([REPLACE_GETGROUPS])
|
|
145 REPLACE_GETPAGESIZE=0; AC_SUBST([REPLACE_GETPAGESIZE])
|
|
146 REPLACE_LCHOWN=0; AC_SUBST([REPLACE_LCHOWN])
|
|
147 REPLACE_LINK=0; AC_SUBST([REPLACE_LINK])
|
|
148 REPLACE_LINKAT=0; AC_SUBST([REPLACE_LINKAT])
|
|
149 REPLACE_LSEEK=0; AC_SUBST([REPLACE_LSEEK])
|
|
150 REPLACE_PREAD=0; AC_SUBST([REPLACE_PREAD])
|
|
151 REPLACE_PWRITE=0; AC_SUBST([REPLACE_PWRITE])
|
|
152 REPLACE_READLINK=0; AC_SUBST([REPLACE_READLINK])
|
|
153 REPLACE_RMDIR=0; AC_SUBST([REPLACE_RMDIR])
|
|
154 REPLACE_SLEEP=0; AC_SUBST([REPLACE_SLEEP])
|
|
155 REPLACE_SYMLINK=0; AC_SUBST([REPLACE_SYMLINK])
|
|
156 REPLACE_TTYNAME_R=0; AC_SUBST([REPLACE_TTYNAME_R])
|
|
157 REPLACE_UNLINK=0; AC_SUBST([REPLACE_UNLINK])
|
|
158 REPLACE_UNLINKAT=0; AC_SUBST([REPLACE_UNLINKAT])
|
|
159 REPLACE_USLEEP=0; AC_SUBST([REPLACE_USLEEP])
|
|
160 REPLACE_WRITE=0; AC_SUBST([REPLACE_WRITE])
|
|
161 UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H])
|
|
162 UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0;
|
|
163 AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS])
|
|
164 ])
|