]> git.saurik.com Git - bison.git/blob - m4/prereq.m4
* tests/actions.at (AT_CHECK_PRINTER_AND_DESTRUCTOR): New.
[bison.git] / m4 / prereq.m4
1 #serial 28 -*- Autoconf -*-
2
3 dnl We use jm_ for non Autoconf macros.
4 m4_pattern_forbid([^jm_[ABCDEFGHIJKLMNOPQRSTUVXYZ]])dnl
5
6 # These are the prerequisite macros for files in the lib/
7 # directories of the fileutils, sh-utils, and textutils packages.
8
9 AC_DEFUN([jm_PREREQ],
10 [
11 jm_PREREQ_ADDEXT
12 jm_PREREQ_C_STACK
13 jm_PREREQ_CANON_HOST
14 jm_PREREQ_DIRNAME
15 jm_PREREQ_ERROR
16 jm_PREREQ_EXCLUDE
17 jm_PREREQ_GETPAGESIZE
18 jm_PREREQ_HARD_LOCALE
19 jm_PREREQ_HASH
20 jm_PREREQ_HUMAN
21 jm_PREREQ_MBSWIDTH
22 jm_PREREQ_MEMCHR
23 jm_PREREQ_PHYSMEM
24 jm_PREREQ_POSIXVER
25 jm_PREREQ_QUOTEARG
26 jm_PREREQ_READUTMP
27 jm_PREREQ_REGEX
28 jm_PREREQ_STAT
29 jm_PREREQ_STRNLEN
30 jm_PREREQ_TEMPNAME # called by mkstemp
31 jm_PREREQ_XGETCWD
32 jm_PREREQ_XREADLINK
33 ])
34
35 AC_DEFUN([jm_PREREQ_ARGMATCH],
36 [
37 AC_REQUIRE([jm_PREREQ_QUOTEARG])
38 AC_REPLACE_FUNCS(strcasecmp strncasecmp)
39 ])
40
41 # Ask for argmatch.[ch], and set it up.
42 AC_DEFUN([jm_FUNC_ARGMATCH],
43 [
44 AC_REQUIRE([jm_PREREQ_ARGMATCH])
45 AC_LIBOBJ([argmatch])
46 AC_LIBSOURCES([argmatch.c, argmatch.h])
47 ])
48
49 AC_DEFUN([jm_PREREQ_ADDEXT],
50 [
51 dnl For addext.c.
52 AC_SYS_LONG_FILE_NAMES
53 AC_CHECK_FUNCS(pathconf)
54 AC_CHECK_HEADERS(limits.h string.h unistd.h)
55 ])
56
57 AC_DEFUN([jm_PREREQ_CANON_HOST],
58 [
59 dnl Add any libraries as early as possible.
60 dnl In particular, inet_ntoa needs -lnsl at least on Solaris5.5.1,
61 dnl so we have to add -lnsl to LIBS before checking for that function.
62 AC_SEARCH_LIBS(gethostbyname, [inet nsl])
63
64 dnl These come from -lnsl on Solaris5.5.1.
65 AC_CHECK_FUNCS(gethostbyname gethostbyaddr inet_ntoa)
66
67 AC_CHECK_FUNCS(gethostbyname gethostbyaddr inet_ntoa)
68 AC_CHECK_HEADERS(unistd.h string.h netdb.h sys/socket.h \
69 netinet/in.h arpa/inet.h)
70 ])
71
72 AC_DEFUN([jm_PREREQ_DIRNAME],
73 [
74 AC_HEADER_STDC
75 AC_CHECK_HEADERS(string.h)
76 ])
77
78 AC_DEFUN([jm_PREREQ_EXCLUDE],
79 [
80 AC_FUNC_FNMATCH_GNU
81 AC_HEADER_STDBOOL
82 ])
83
84 AC_DEFUN([jm_PREREQ_GETPAGESIZE],
85 [
86 AC_CHECK_FUNCS(getpagesize)
87 AC_CHECK_HEADERS(OS.h unistd.h)
88 ])
89
90 AC_DEFUN([jm_PREREQ_HARD_LOCALE],
91 [
92 AC_CHECK_HEADERS(locale.h stdlib.h string.h)
93 AC_CHECK_FUNCS(setlocale)
94 AM_C_PROTOTYPES
95 ])
96
97 # AC_DEFUN([jm_PREREQ_HASH],
98 # [
99 # AC_CHECK_HEADERS(stdlib.h)
100 # AC_HEADER_STDBOOL
101 # AC_REQUIRE([jm_CHECK_DECLS])
102 # ])
103
104 # If you use human.c, you need the following files:
105 # inttypes.m4 ulonglong.m4
106 AC_DEFUN([jm_PREREQ_HUMAN],
107 [
108 AC_CHECK_HEADERS(limits.h stdlib.h string.h)
109 AC_CHECK_DECLS([getenv])
110 AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])
111 ])
112
113 AC_DEFUN([jm_PREREQ_MEMCHR],
114 [
115 AC_CHECK_HEADERS(limits.h stdlib.h bp-sym.h)
116 ])
117
118 AC_DEFUN([jm_PREREQ_PHYSMEM],
119 [
120 AC_CHECK_HEADERS(sys/pstat.h unistd.h)
121 AC_CHECK_FUNCS(pstat_getstatic pstat_getdynamic)
122 ])
123
124 AC_DEFUN([jm_PREREQ_POSIXVER],
125 [
126 AC_CHECK_HEADERS(unistd.h)
127 AC_CHECK_DECLS([getenv])
128 ])
129
130 AC_DEFUN([jm_PREREQ_QUOTEARG],
131 [
132 AC_CHECK_FUNCS(isascii iswprint)
133 jm_FUNC_MBRTOWC
134 jm_FUNC_MEMCMP
135 AC_CHECK_HEADERS(limits.h stddef.h stdlib.h string.h wchar.h wctype.h)
136 AC_HEADER_STDC
137 AC_C_BACKSLASH_A
138 AC_TYPE_MBSTATE_T
139 AM_C_PROTOTYPES
140 ])
141
142 AC_DEFUN([jm_PREREQ_READUTMP],
143 [
144 AC_HEADER_STDC
145 AC_CHECK_HEADERS(string.h utmp.h utmpx.h sys/param.h)
146 AC_CHECK_FUNCS(utmpname)
147 AC_CHECK_FUNCS(utmpxname)
148 AM_C_PROTOTYPES
149
150 if test $ac_cv_header_utmp_h = yes || test $ac_cv_header_utmpx_h = yes; then
151 utmp_includes="\
152 $ac_includes_default
153 #ifdef HAVE_UTMPX_H
154 # include <utmpx.h>
155 #endif
156 #ifdef HAVE_UTMP_H
157 # include <utmp.h>
158 #endif
159 "
160 AC_CHECK_MEMBERS([struct utmpx.ut_user],,,[$utmp_includes])
161 AC_CHECK_MEMBERS([struct utmp.ut_user],,,[$utmp_includes])
162 AC_CHECK_MEMBERS([struct utmpx.ut_name],,,[$utmp_includes])
163 AC_CHECK_MEMBERS([struct utmp.ut_name],,,[$utmp_includes])
164 AC_CHECK_MEMBERS([struct utmpx.ut_type],,,[$utmp_includes])
165 AC_CHECK_MEMBERS([struct utmp.ut_type],,,[$utmp_includes])
166 AC_CHECK_MEMBERS([struct utmpx.ut_pid],,,[$utmp_includes])
167 AC_CHECK_MEMBERS([struct utmp.ut_pid],,,[$utmp_includes])
168 AC_CHECK_MEMBERS([struct utmpx.ut_id],,,[$utmp_includes])
169 AC_CHECK_MEMBERS([struct utmp.ut_id],,,[$utmp_includes])
170
171 AC_CHECK_MEMBERS([struct utmpx.ut_exit.ut_exit],,,[$utmp_includes])
172 AC_CHECK_MEMBERS([struct utmp.ut_exit.ut_exit],,,[$utmp_includes])
173 AC_CHECK_MEMBERS([struct utmpx.ut_exit.e_exit],,,[$utmp_includes])
174 AC_CHECK_MEMBERS([struct utmp.ut_exit.e_exit],,,[$utmp_includes])
175
176 AC_CHECK_MEMBERS([struct utmpx.ut_exit.ut_termination],,,[$utmp_includes])
177 AC_CHECK_MEMBERS([struct utmp.ut_exit.ut_termination],,,[$utmp_includes])
178 AC_CHECK_MEMBERS([struct utmpx.ut_exit.e_termination],,,[$utmp_includes])
179 AC_CHECK_MEMBERS([struct utmp.ut_exit.e_termination],,,[$utmp_includes])
180 AC_LIBOBJ(readutmp)
181 fi
182 ])
183
184 AC_DEFUN([jm_PREREQ_REGEX],
185 [
186 dnl FIXME: Maybe provide a btowc replacement someday: solaris-2.5.1 lacks it.
187 dnl FIXME: Check for wctype and iswctype, and and add -lw if necessary
188 dnl to get them.
189 AC_CHECK_FUNCS(bzero bcopy isascii btowc)
190 AC_CHECK_HEADERS(alloca.h libintl.h wctype.h wchar.h)
191 AC_HEADER_STDC
192 AC_FUNC_ALLOCA
193 ])
194
195 AC_DEFUN([jm_PREREQ_STAT],
196 [
197 AC_CHECK_HEADERS(sys/sysmacros.h sys/statvfs.h sys/vfs.h inttypes.h)
198 AC_CHECK_HEADERS(sys/param.h sys/mount.h)
199 AC_CHECK_FUNCS(statvfs)
200 jm_AC_TYPE_LONG_LONG
201
202 statxfs_includes="\
203 $ac_includes_default
204 #if HAVE_SYS_STATVFS_H
205 # include <sys/statvfs.h>
206 #endif
207 #if HAVE_SYS_VFS_H
208 # include <sys/vfs.h>
209 #endif
210 #if ( ! HAVE_SYS_STATVFS_H && ! HAVE_SYS_VFS_H && HAVE_SYS_MOUNT_H && HAVE_SYS_PARAM_H )
211 /* NetBSD 1.5.2 needs these, for the declaration of struct statfs. */
212 # include <sys/param.h>
213 # include <sys/mount.h>
214 #endif
215 "
216 AC_CHECK_MEMBERS([struct statfs.f_basetype],,,[$statxfs_includes])
217 AC_CHECK_MEMBERS([struct statvfs.f_basetype],,,[$statxfs_includes])
218 AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[$statxfs_includes])
219 AC_CHECK_MEMBERS([struct statfs.f_type],,,[$statxfs_includes])
220 AC_CHECK_MEMBERS([struct statvfs.f_type],,,[$statxfs_includes])
221 AC_CHECK_MEMBERS([struct statfs.f_fsid.__val],,,[$statxfs_includes])
222 AC_CHECK_MEMBERS([struct statvfs.f_fsid.__val],,,[$statxfs_includes])
223 AC_CHECK_MEMBERS([struct statfs.f_namemax],,,[$statxfs_includes])
224 AC_CHECK_MEMBERS([struct statvfs.f_namemax],,,[$statxfs_includes])
225 AC_CHECK_MEMBERS([struct statfs.f_namelen],,,[$statxfs_includes])
226 AC_CHECK_MEMBERS([struct statvfs.f_namelen],,,[$statxfs_includes])
227 ])
228
229 AC_DEFUN([jm_PREREQ_STRNLEN],
230 [
231 AC_FUNC_STRNLEN
232 AC_HEADER_STDC
233 AC_CHECK_HEADERS(memory.h)
234 AC_CHECK_DECLS([memchr])
235
236 # This is necessary because automake-1.6.1 doesn't understand
237 # that the above use of AC_FUNC_STRNLEN means we may have to use
238 # lib/strnlen.c.
239 test $ac_cv_func_strnlen_working = yes \
240 && AC_LIBOBJ(strnlen)
241 ])
242
243 AC_DEFUN([jm_PREREQ_TEMPNAME],
244 [
245 AC_HEADER_STDC
246 AC_HEADER_STAT
247 AC_CHECK_HEADERS(fcntl.h sys/time.h stdint.h unistd.h)
248 AC_CHECK_FUNCS(__secure_getenv gettimeofday)
249 AC_CHECK_DECLS([getenv])
250 AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])
251 ])
252
253 AC_DEFUN([jm_PREREQ_XGETCWD],
254 [
255 AC_C_PROTOTYPES
256 AC_CHECK_HEADERS(limits.h stdlib.h sys/param.h unistd.h)
257 AC_CHECK_FUNCS(getcwd)
258 AC_FUNC_GETCWD_NULL
259 ])
260
261 AC_DEFUN([jm_PREREQ_XREADLINK],
262 [
263 AC_C_PROTOTYPES
264 AC_CHECK_HEADERS(limits.h stdlib.h sys/types.h unistd.h)
265 ])