1 /* Miscellaneous global declarations and portability cruft for GNU Make.
2 Copyright (C) 1988,89,90,91,92,93,94,95,96 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)
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__)
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). */
32 /* Use prototypes if available. */
33 #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
35 #define PARAMS(protos) protos
36 #else /* Not C++ or ANSI C. */
38 #define PARAMS(protos) ()
39 #endif /* C++ or ANSI C. */
43 /* This must happen before #include <signal.h> so
44 that the declaration therein is changed. */
45 #define signal bsdsignal
49 #include <sys/types.h>
54 #ifdef HAVE_SYS_TIMEB_H
55 /* SCO 3.2 "devsys 4.2" has a prototype for `ftime' in <time.h> that bombs
56 unless <sys/timeb.h> has been included first. Does every system have a
57 <sys/timeb.h>? If any does not, configure should check for it. */
58 #include <sys/timeb.h>
68 #define isblank(c) ((c) == ' ' || (c) == '\t')
73 /* Ultrix's unistd.h always defines _POSIX_VERSION, but you only get
74 POSIX.1 behavior with `cc -YPOSIX', which predefines POSIX itself! */
75 #if defined (_POSIX_VERSION) && !defined (ultrix)
80 /* Some systems define _POSIX_VERSION but are not really POSIX.1. */
81 #if (defined (butterfly) || defined (__arm) || (defined (__mips) && defined (_SYSTYPE_SVR3)) || (defined (sequent) && defined (i386)))
85 #if !defined (POSIX) && defined (_AIX) && defined (_POSIX_SOURCE)
89 #ifdef HAVE_SYS_SIGLIST
90 #ifndef SYS_SIGLIST_DECLARED
91 extern char *sys_siglist
[];
97 /* Some systems do not define NSIG in <signal.h>. */
107 #define RETSIGTYPE void
111 #define sigmask(sig) (1 << ((sig) - 1))
117 #ifdef HAVE_SYS_PARAM_H
118 #include <sys/param.h>
123 #define PATH_MAX MAXPATHLEN
124 #endif /* Not POSIX. */
125 #endif /* No PATH_MAX. */
127 #define MAXPATHLEN 1024
128 #endif /* No MAXPATHLEN. */
131 #define GET_PATH_MAX PATH_MAX
132 #define PATH_VAR(var) char var[PATH_MAX]
134 #define NEED_GET_PATH_MAX
135 extern unsigned int get_path_max
PARAMS ((void));
136 #define GET_PATH_MAX (get_path_max ())
137 #define PATH_VAR(var) char *var = (char *) alloca (GET_PATH_MAX)
140 #ifdef STAT_MACROS_BROKEN
147 #endif /* STAT_MACROS_BROKEN. */
150 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
153 #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
165 #if (defined (STDC_HEADERS) || defined (__GNU_LIBRARY__) || defined(VMS))
169 #else /* No standard headers. */
181 extern char *malloc
PARAMS ((int));
182 extern char *realloc
PARAMS ((char *, int));
183 extern void free
PARAMS ((char *));
185 extern void abort
PARAMS ((void));
186 extern void exit
PARAMS ((int));
188 #endif /* Standard headers. */
193 #define index(s, c) strchr((s), (c))
196 #define rindex(s, c) strrchr((s), (c))
200 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
203 #define bzero(s, n) memset ((s), 0, (n))
206 #define bcopy(s, d, n) memcpy ((d), (s), (n))
209 #else /* Not ANSI_STRING. */
215 extern void bzero ();
218 extern void bcopy ();
221 #endif /* ANSI_STRING. */
224 /* SCO Xenix has a buggy macro definition in <string.h>. */
227 #if !defined(ANSI_STRING) && !defined(__DECC)
228 extern char *strerror
PARAMS ((int errnum
));
234 #define alloca(n) __builtin_alloca (n)
238 #else /* Not HAVE_ALLOCA_H. */
240 extern char *alloca ();
241 #endif /* Not AIX. */
242 #endif /* HAVE_ALLOCA_H. */
246 #define streq(a, b) \
248 (*(a) == *(b) && (*(a) == '\0' || !strcmp ((a) + 1, (b) + 1))))
250 #define strieq(a, b) \
252 (tolower(*(a)) == tolower(*(b)) && (*(a) == '\0' || !strcmpi ((a) + 1, (b) + 1))))
254 #define strieq(a, b) \
256 (*(a) == *(b) && (*(a) == '\0' || !strcmp ((a) + 1, (b) + 1))))
259 /* Buggy compiler can't handle this. */
260 #define streq(a, b) (strcmp ((a), (b)) == 0)
261 #define strieq(a, b) (strcmp ((a), (b)) == 0)
264 /* Add to VAR the hashing value of C, one character in a name. */
265 #define HASH(var, c) \
266 ((var += (c)), (var = ((var) << 7) + ((var) >> 20)))
267 #ifdef _AMIGA /* Fold filenames on #amiga */
268 #define HASHI(var, c) \
269 ((var += tolower((c))), (var = ((var) << 7) + ((var) >> 20)))
271 #define HASHI(var, c) HASH(var,c)
274 #if defined(__GNUC__) || defined(ENUM_BITFIELDS)
275 #define ENUM_BITFIELD(bits) :bits
277 #define ENUM_BITFIELD(bits)
280 #if defined(__MSDOS__) || defined(WIN32)
281 #define PATH_SEPARATOR_CHAR ';'
283 #define PATH_SEPARATOR_CHAR ':'
289 #define pipe(p) _pipe(p, 512, O_BINARY)
290 #define kill(pid,sig) w32_kill(pid,sig)
292 extern void sync_Path_environment(void);
293 extern int kill(int pid
, int sig
);
294 extern int safe_stat(char *file
, struct stat
*sb
);
295 extern char *end_of_token_w32();
299 extern void message ();
300 extern void fatal ();
301 extern void error ();
302 extern void log_working_directory ();
303 extern void makefile_error ();
304 extern void makefile_fatal ();
305 extern void pfatal_with_name ();
306 extern void perror_with_name ();
307 extern char *savestring ();
308 extern char *concat ();
309 extern char *xmalloc ();
310 extern char *xrealloc ();
311 extern char *find_next_token ();
312 extern char *next_token ();
313 extern char *end_of_token ();
314 extern void collapse_continuations ();
315 extern void remove_comments ();
316 extern char *sindex ();
317 extern char *lindex ();
318 extern int alpha_compare ();
319 extern void print_spaces ();
320 extern struct dep
*copy_dep_chain ();
321 extern char *find_char_unquote ();
322 extern char *find_percent ();
325 extern int ar_name ();
326 extern void ar_parse_name ();
327 extern int ar_touch ();
328 extern time_t ar_member_date ();
331 extern void dir_load ();
332 extern int dir_file_exists_p ();
333 extern int file_exists_p ();
334 extern int file_impossible_p ();
335 extern void file_impossible ();
336 extern char *dir_name ();
338 extern void define_default_variables ();
339 extern void set_default_suffixes ();
340 extern void install_default_suffix_rules ();
341 extern void install_default_implicit_rules ();
342 extern void count_implicit_rule_limits ();
343 extern void convert_to_pattern ();
344 extern void create_pattern_rule ();
346 extern void build_vpath_lists ();
347 extern void construct_vpath_list ();
348 extern int vpath_search ();
350 extern void construct_include_path ();
351 extern void uniquize_deps ();
353 extern int update_goal_chain ();
354 extern void notice_finished_file ();
356 extern void user_access ();
357 extern void make_access ();
358 extern void child_access ();
364 /* We omit these declarations on non-POSIX systems which define _POSIX_VERSION,
365 because such systems often declare the in header files anyway. */
367 #if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION) && !defined(WIN32)
369 extern long int atol ();
371 extern long int lseek ();
374 #endif /* Not GNU C library or POSIX. */
377 extern char *getcwd ();
379 extern char *getwd
PARAMS ((char *));
382 extern char *getwd ();
383 #define getcwd(buf, len) getwd (buf)
386 extern char **environ
;
388 extern char *reading_filename
;
389 extern unsigned int *reading_lineno_ptr
;
391 extern int just_print_flag
, silent_flag
, ignore_errors_flag
, keep_going_flag
;
392 extern int debug_flag
, print_data_base_flag
, question_flag
, touch_flag
;
393 extern int env_overrides
, no_builtin_rules_flag
, print_version_flag
;
394 extern int print_directory_flag
, warn_undefined_variables_flag
;
395 extern int posix_pedantic
;
397 extern unsigned int job_slots
;
399 extern double max_load_average
;
401 extern int max_load_average
;
404 extern char *program
;
405 extern char *starting_directory
;
406 extern unsigned int makelevel
;
407 extern char *version_string
, *remote_description
;
409 extern unsigned int commands_started
;
411 extern int handling_fatal_signal
;
414 #define DEBUGPR(msg) \
415 do if (debug_flag) { print_spaces (depth); printf (msg, file->name); \
416 fflush (stdout); } while (0)
419 # ifndef EXIT_FAILURE
420 # define EXIT_FAILURE 3
422 # ifndef EXIT_SUCCESS
423 # define EXIT_SUCCESS 1
425 # ifndef EXIT_TROUBLE
426 # define EXIT_TROUBLE 2
429 # ifndef EXIT_FAILURE
430 # define EXIT_FAILURE 2
432 # ifndef EXIT_SUCCESS
433 # define EXIT_SUCCESS 0
435 # ifndef EXIT_TROUBLE
436 # define EXIT_TROUBLE 1