| 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 you have the vprintf library function. */
|
|---|
| 60 | #undef HAVE_VPRINTF
|
|---|
| 61 | #define HAVE_VPRINTF 1
|
|---|
| 62 |
|
|---|
| 63 | /* Name of the package */
|
|---|
| 64 | #define PACKAGE "%PACKAGE%"
|
|---|
| 65 |
|
|---|
| 66 | /* Define to the address where bug reports for this package should be sent. */
|
|---|
| 67 | #define PACKAGE_BUGREPORT "bug-%PACKAGE%@gnu.org"
|
|---|
| 68 |
|
|---|
| 69 | /* Define to the full name of this package. */
|
|---|
| 70 | #define PACKAGE_NAME "GNU %PACKAGE%"
|
|---|
| 71 |
|
|---|
| 72 | /* Define to the full name and version of this package. */
|
|---|
| 73 | #define PACKAGE_STRING "GNU %PACKAGE% %VERSION%"
|
|---|
| 74 |
|
|---|
| 75 | /* Define to the one symbol short name of this package. */
|
|---|
| 76 | #define PACKAGE_TARNAME "%PACKAGE%"
|
|---|
| 77 |
|
|---|
| 78 | /* Define to the version of this package. */
|
|---|
| 79 | #define PACKAGE_VERSION "%VERSION%"
|
|---|
| 80 |
|
|---|
| 81 | /* Define to 1 if the C compiler supports function prototypes. */
|
|---|
| 82 | #define PROTOTYPES 1
|
|---|
| 83 |
|
|---|
| 84 | /* Define to 1 if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
|
|---|
| 85 | #define SYS_SIGLIST_DECLARED 1
|
|---|
| 86 |
|
|---|
| 87 | /* Version number of package */
|
|---|
| 88 | #define VERSION "%VERSION%"
|
|---|
| 89 |
|
|---|
| 90 | /* Build host information. */
|
|---|
| 91 | #define MAKE_HOST "i386-pc-msdosdjgpp"
|
|---|
| 92 |
|
|---|
| 93 | /* Grok DOS paths (drive specs and backslash path element separators) */
|
|---|
| 94 | #define HAVE_DOS_PATHS
|
|---|