1 |
|
---|
2 | /* Many things are defined already by a system header. */
|
---|
3 | #include <sys/config.h>
|
---|
4 |
|
---|
5 | #if __DJGPP__ > 2 || __DJGPP_MINOR__ > 1
|
---|
6 |
|
---|
7 | /* Define if `sys_siglist' is declared by <signal.h>. */
|
---|
8 | # define SYS_SIGLIST_DECLARED 1
|
---|
9 |
|
---|
10 | /* Define this if the C library defines the variable `_sys_siglist'. */
|
---|
11 | # define HAVE_SYS_SIGLIST 1
|
---|
12 |
|
---|
13 | #else
|
---|
14 |
|
---|
15 | /* Define NSIG. */
|
---|
16 | # define NSIG SIGMAX
|
---|
17 |
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | /* Use high resolution file timestamps if nonzero. */
|
---|
21 | #define FILE_TIMESTAMP_HI_RES 0
|
---|
22 |
|
---|
23 | /* Define to 1 if you have `alloca', as a function or macro. */
|
---|
24 | #define HAVE_ALLOCA 1
|
---|
25 |
|
---|
26 | /* Define if you have the fdopen function. */
|
---|
27 | #define HAVE_FDOPEN 1
|
---|
28 |
|
---|
29 | /* Define to 1 if you have the `getgroups' function. */
|
---|
30 | #define HAVE_GETGROUPS 1
|
---|
31 |
|
---|
32 | /* Define if you have the <memory.h> header file. */
|
---|
33 | #define HAVE_MEMORY_H 1
|
---|
34 |
|
---|
35 | /* Define if you have the mkstemp function. */
|
---|
36 | #define HAVE_MKSTEMP 1
|
---|
37 |
|
---|
38 | /* Define to 1 if you have the `mktemp' function. */
|
---|
39 | #define HAVE_MKTEMP 1
|
---|
40 |
|
---|
41 | /* Define to 1 if you have the `setlinebuf' function. */
|
---|
42 | #define HAVE_SETLINEBUF 1
|
---|
43 |
|
---|
44 | /* Define to 1 if you have the `setvbuf' function. */
|
---|
45 | #define HAVE_SETVBUF 1
|
---|
46 |
|
---|
47 | #define SCCS_GET "get"
|
---|
48 |
|
---|
49 | /* Define to `unsigned long' or `unsigned long long'
|
---|
50 | if <inttypes.h> doesn't define. */
|
---|
51 | #define uintmax_t unsigned long long
|
---|
52 |
|
---|
53 | /* Define the type of the first arg to select(). */
|
---|
54 | #define fd_set_size_t int
|
---|
55 |
|
---|
56 | /* Define if you have the select function. */
|
---|
57 | #define HAVE_SELECT 1
|
---|
58 |
|
---|
59 | /* Define if your compiler conforms to the ANSI C standard. */
|
---|
60 | #define HAVE_ANSI_COMPILER 1
|
---|
61 |
|
---|
62 | /* Define to 1 if you have the <stdarg.h> header file. */
|
---|
63 | #define HAVE_STDARG_H 1
|
---|
64 |
|
---|
65 | /* Define if you have the vprintf library function. */
|
---|
66 | #undef HAVE_VPRINTF
|
---|
67 | #define HAVE_VPRINTF 1
|
---|
68 |
|
---|
69 | /* Name of the package */
|
---|
70 | #define PACKAGE "make"
|
---|
71 |
|
---|
72 | /* Define to the address where bug reports for this package should be sent. */
|
---|
73 | #define PACKAGE_BUGREPORT "[email protected]"
|
---|
74 |
|
---|
75 | /* Define to the full name of this package. */
|
---|
76 | #define PACKAGE_NAME "GNU make"
|
---|
77 |
|
---|
78 | /* Define to the full name and version of this package. */
|
---|
79 | #define PACKAGE_STRING "GNU make 3.81beta1"
|
---|
80 |
|
---|
81 | /* Define to the one symbol short name of this package. */
|
---|
82 | #define PACKAGE_TARNAME "make"
|
---|
83 |
|
---|
84 | /* Define to the version of this package. */
|
---|
85 | #define PACKAGE_VERSION "3.81beta1"
|
---|
86 |
|
---|
87 | /* Define to 1 if the C compiler supports function prototypes. */
|
---|
88 | #define PROTOTYPES 1
|
---|
89 |
|
---|
90 | /* Define to 1 if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
|
---|
91 | #define SYS_SIGLIST_DECLARED 1
|
---|
92 |
|
---|
93 | /* Version number of package */
|
---|
94 | #define VERSION "3.81beta1"
|
---|
95 |
|
---|
96 | /* Build host information. */
|
---|
97 | #define MAKE_HOST "i386-pc-msdosdjgpp"
|
---|
98 |
|
---|
99 | /* Grok DOS paths (drive specs and backslash path element separators) */
|
---|
100 | #define HAVE_DOS_PATHS
|
---|