Move include of config.h before all others.
[make.git] / make.h
blob3503910f2a74e7ae251a7d300d4bdf568c3a80b4
1 /* Miscellaneous global declarations and portability cruft for GNU Make.
2 Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95 Free Software Foundation, Inc.
3 This file is part of GNU Make.
5 GNU Make is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 GNU Make is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Make; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19 /* AIX requires this to be the first thing in the file. */
20 #if defined (_AIX) && !defined (__GNUC__)
21 #pragma alloca
22 #endif
24 /* We use <config.h> instead of "config.h" so that a compilation
25 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
26 (which it would do because make.h was found in $srcdir). */
27 #include <config.h>
28 #undef HAVE_CONFIG_H
29 #define HAVE_CONFIG_H
31 #ifdef CRAY
32 /* This must happen before #include <signal.h> so
33 that the declaration therein is changed. */
34 #define signal bsdsignal
35 #endif
37 #define _GNU_SOURCE
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <signal.h>
41 #include <stdio.h>
42 #include <ctype.h>
43 #ifdef HAVE_SYS_TIMEB_H
44 /* SCO 3.2 "devsys 4.2" has a prototype for `ftime' in <time.h> that bombs
45 unless <sys/timeb.h> has been included first. Does every system have a
46 <sys/timeb.h>? If any does not, configure should check for it. */
47 #include <sys/timeb.h>
48 #endif
49 #include <time.h>
50 #include <errno.h>
52 #ifndef errno
53 extern int errno;
54 #endif
56 #ifndef isblank
57 #define isblank(c) ((c) == ' ' || (c) == '\t')
58 #endif
60 #ifdef HAVE_UNISTD_H
61 #include <unistd.h>
62 /* Ultrix's unistd.h always defines _POSIX_VERSION, but you only get
63 POSIX.1 behavior with `cc -YPOSIX', which predefines POSIX itself! */
64 #if defined (_POSIX_VERSION) && !defined (ultrix)
65 #define POSIX
66 #endif
67 #endif
69 /* Some systems define _POSIX_VERSION but are not really POSIX.1. */
70 #if (defined (butterfly) || defined (__arm) || \
71 (defined (__mips) && defined (_SYSTYPE_SVR3)) || \
72 (defined (sequent) && defined (i386)))
73 #undef POSIX
74 #endif
76 #if !defined (POSIX) && defined (_AIX) && defined (_POSIX_SOURCE)
77 #define POSIX
78 #endif
80 #if !defined (HAVE_SYS_SIGLIST) && defined (HAVE__SYS_SIGLIST)
81 #define sys_siglist _sys_siglist
82 #define HAVE_SYS_SIGLIST /* Now we have it. */
84 /* It was declared in <signal.h>, with who knows what type.
85 Don't declare it again and risk conflicting. */
86 #define SYS_SIGLIST_DECLARED
87 #endif
89 #ifdef HAVE_SYS_SIGLIST
90 #ifndef SYS_SIGLIST_DECLARED
91 extern char *sys_siglist[];
92 #endif
93 #else
94 #include "signame.h"
95 #endif
97 /* Some systems do not define NSIG in <signal.h>. */
98 #ifndef NSIG
99 #ifdef _NSIG
100 #define NSIG _NSIG
101 #else
102 #define NSIG 32
103 #endif
104 #endif
106 #ifndef RETSIGTYPE
107 #define RETSIGTYPE void
108 #endif
110 #ifndef sigmask
111 #define sigmask(sig) (1 << ((sig) - 1))
112 #endif
114 #ifdef HAVE_LIMITS_H
115 #include <limits.h>
116 #endif
117 #ifdef HAVE_SYS_PARAM_H
118 #include <sys/param.h>
119 #endif
121 #ifndef PATH_MAX
122 #ifndef POSIX
123 #define PATH_MAX MAXPATHLEN
124 #endif /* Not POSIX. */
125 #endif /* No PATH_MAX. */
126 #ifndef MAXPATHLEN
127 #define MAXPATHLEN 1024
128 #endif /* No MAXPATHLEN. */
130 #ifdef PATH_MAX
131 #define GET_PATH_MAX PATH_MAX
132 #define PATH_VAR(var) char var[PATH_MAX]
133 #else
134 #define NEED_GET_PATH_MAX
135 extern unsigned int get_path_max ();
136 #define GET_PATH_MAX (get_path_max ())
137 #define PATH_VAR(var) char *var = (char *) alloca (GET_PATH_MAX)
138 #endif
140 #ifdef STAT_MACROS_BROKEN
141 #ifdef S_ISREG
142 #undef S_ISREG
143 #endif
144 #ifdef S_ISDIR
145 #undef S_ISDIR
146 #endif
147 #endif /* STAT_MACROS_BROKEN. */
149 #ifndef S_ISREG
150 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
151 #endif
152 #ifndef S_ISDIR
153 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
154 #endif
157 #if (defined (STDC_HEADERS) || defined (__GNU_LIBRARY__))
158 #include <stdlib.h>
159 #include <string.h>
160 #define ANSI_STRING
161 #else /* No standard headers. */
163 #ifdef HAVE_STRING_H
164 #include <string.h>
165 #define ANSI_STRING
166 #else
167 #include <strings.h>
168 #endif
169 #ifdef HAVE_MEMORY_H
170 #include <memory.h>
171 #endif
173 extern char *malloc (), *realloc ();
174 extern void free ();
176 extern void abort (), exit ();
178 #endif /* Standard headers. */
180 #ifdef ANSI_STRING
182 #ifndef index
183 #define index(s, c) strchr((s), (c))
184 #endif
185 #ifndef rindex
186 #define rindex(s, c) strrchr((s), (c))
187 #endif
189 #ifndef bcmp
190 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
191 #endif
192 #ifndef bzero
193 #define bzero(s, n) memset ((s), 0, (n))
194 #endif
195 #ifndef bcopy
196 #define bcopy(s, d, n) memcpy ((d), (s), (n))
197 #endif
199 #else /* Not ANSI_STRING. */
201 #ifndef bcmp
202 extern int bcmp ();
203 #endif
204 #ifndef bzero
205 extern void bzero ();
206 #endif
207 #ifndef bcopy
208 extern void bcopy ();
209 #endif
211 #endif /* ANSI_STRING. */
212 #undef ANSI_STRING
214 /* SCO Xenix has a buggy macro definition in <string.h>. */
215 #undef strerror
217 #ifndef ANSI_STRING
218 extern char *strerror ();
219 #endif
222 #ifdef __GNUC__
223 #undef alloca
224 #define alloca(n) __builtin_alloca (n)
225 #else /* Not GCC. */
226 #ifdef HAVE_ALLOCA_H
227 #include <alloca.h>
228 #else /* Not HAVE_ALLOCA_H. */
229 #ifndef _AIX
230 extern char *alloca ();
231 #endif /* Not AIX. */
232 #endif /* HAVE_ALLOCA_H. */
233 #endif /* GCC. */
235 #ifndef iAPX286
236 #define streq(a, b) \
237 ((a) == (b) || \
238 (*(a) == *(b) && (*(a) == '\0' || !strcmp ((a) + 1, (b) + 1))))
239 #else
240 /* Buggy compiler can't handle this. */
241 #define streq(a, b) (strcmp ((a), (b)) == 0)
242 #endif
244 /* Add to VAR the hashing value of C, one character in a name. */
245 #define HASH(var, c) \
246 ((var += (c)), (var = ((var) << 7) + ((var) >> 20)))
248 #if defined(__GNUC__) || defined(ENUM_BITFIELDS)
249 #define ENUM_BITFIELD(bits) :bits
250 #else
251 #define ENUM_BITFIELD(bits)
252 #endif
254 #ifdef __MSDOS__
255 #define PATH_SEPARATOR_CHAR ';'
256 #else
257 #define PATH_SEPARATOR_CHAR ':'
258 #endif
260 extern void die ();
261 extern void message (), fatal (), error ();
262 extern void makefile_error (), makefile_fatal ();
263 extern void pfatal_with_name (), perror_with_name ();
264 extern char *savestring (), *concat ();
265 extern char *xmalloc (), *xrealloc ();
266 extern char *find_next_token (), *next_token (), *end_of_token ();
267 extern void collapse_continuations (), remove_comments ();
268 extern char *sindex (), *lindex ();
269 extern int alpha_compare ();
270 extern void print_spaces ();
271 extern struct dep *copy_dep_chain ();
272 extern char *find_char_unquote (), *find_percent ();
274 #ifndef NO_ARCHIVES
275 extern int ar_name ();
276 extern void ar_parse_name ();
277 extern int ar_touch ();
278 extern time_t ar_member_date ();
279 #endif
281 extern void dir_load ();
282 extern int dir_file_exists_p (), file_exists_p (), file_impossible_p ();
283 extern void file_impossible ();
284 extern char *dir_name ();
286 extern void define_default_variables ();
287 extern void set_default_suffixes (), install_default_suffix_rules ();
288 extern void install_default_implicit_rules (), count_implicit_rule_limits ();
289 extern void convert_to_pattern (), create_pattern_rule ();
291 extern void build_vpath_lists (), construct_vpath_list ();
292 extern int vpath_search ();
294 extern void construct_include_path ();
295 extern void uniquize_deps ();
297 extern int update_goal_chain ();
298 extern void notice_finished_file ();
300 extern void user_access (), make_access (), child_access ();
303 #ifdef HAVE_VFORK_H
304 #include <vfork.h>
305 #endif
307 /* We omit these declarations on non-POSIX systems which define _POSIX_VERSION,
308 because such systems often declare the in header files anyway. */
310 #if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION)
312 extern long int atol ();
313 extern long int lseek ();
315 #endif /* Not GNU C library or POSIX. */
317 #ifdef HAVE_GETCWD
318 extern char *getcwd ();
319 #else
320 extern char *getwd ();
321 #define getcwd(buf, len) getwd (buf)
322 #endif
324 extern char **environ;
326 extern char *reading_filename;
327 extern unsigned int *reading_lineno_ptr;
329 extern int just_print_flag, silent_flag, ignore_errors_flag, keep_going_flag;
330 extern int debug_flag, print_data_base_flag, question_flag, touch_flag;
331 extern int env_overrides, no_builtin_rules_flag, print_version_flag;
332 extern int print_directory_flag, warn_undefined_variables_flag;
333 extern int posix_pedantic;
335 extern unsigned int job_slots;
336 extern double max_load_average;
338 extern char *program;
339 extern char *starting_directory;
340 extern unsigned int makelevel;
341 extern char *version_string, *remote_description;
343 extern unsigned int commands_started;
345 extern int handling_fatal_signal;
348 #define DEBUGPR(msg) \
349 do if (debug_flag) { print_spaces (depth); printf (msg, file->name); \
350 fflush (stdout); } while (0)