|
1 | | -/* NOTE: config.h.in is converted into config.h by the configure |
2 | | - script in the toplevel directory. |
3 | | -
|
4 | | - On non-UNIX systems, manually copy config.h.in to config.h, and |
5 | | - edit the latter to reflect the actual configuration of your system. |
6 | | -
|
7 | | - Then arrange that the symbol HAVE_CONFIG_H is defined during |
8 | | - compilation (usually by passing an argument of the form |
9 | | - `-DHAVE_CONFIG_H' to the compiler, but this is necessarily |
10 | | - system-dependent). */ |
11 | | - |
12 | | - |
13 | | -/* Types which have no traditional name -- edit the definition if necessary */ |
14 | | - |
15 | | -#define RETSIGTYPE int /* int or void: return of signal handlers */ |
16 | | - |
17 | | - |
18 | | -/* Types which are often defined in <sys/types.h> -- either define as |
19 | | - some variant of int or leave undefined. Uncomment a definition if |
20 | | - your <sys/types.h> does not define the type */ |
21 | | - |
22 | | -/* #define mode_t int */ |
23 | | -/* #define off_t long */ |
24 | | -/* #define pid_t int */ |
25 | | -/* #define size_t unsigned */ |
26 | | -/* #define uid_t int */ |
27 | | -/* #define gid_t int */ |
28 | | - |
29 | | - |
30 | | -/* Feature test symbols -- either define as 1 or leave undefined */ |
31 | | - |
32 | | -/* symbol name: #define as 1 if: */ |
33 | | - |
34 | | -#undef STDC_HEADERS /* the standard C header files exist |
35 | | - (in particular, <stdlib.h>, |
36 | | - <stdarg.h>, <string.h> and <float.h>) */ |
37 | | - |
38 | | -#undef HAVE_DLFCN_H /* <dlfcn.h> exists */ |
39 | | -#undef HAVE_SIGNAL_H /* <signal.h> exists */ |
40 | | -#undef HAVE_STDARG_H /* <stdarg.h> exists (else need <varargs.h>) */ |
41 | | -#undef HAVE_STDLIB_H /* <stdlib.h> exists */ |
42 | | -#undef HAVE_UNISTD_H /* <unistd.h> exists */ |
43 | | -#undef HAVE_UTIME_H /* <utime.h> exists */ |
44 | | - |
45 | | -#undef HAVE_SYS_PARAM_H /* <sys/param.h> exists */ |
46 | | -#undef HAVE_SYS_SELECT_H /* <sys/select.h> exists */ |
47 | | -#undef HAVE_SYS_TIMES_H /* <sys/times.h> exists */ |
48 | | -#undef HAVE_SYS_TIME_H /* <sys/time.h> exists */ |
49 | | -#undef HAVE_SYS_UTSNAME_H /* <sys/utsname.h> exists */ |
50 | | -#undef HAVE_SYS_UN_H /* <sys/un.h> exists */ |
51 | | - |
52 | | -#undef TIME_WITH_SYS_TIME /* <sys/time.h> and <time.h> can be included |
53 | | - together */ |
54 | | - |
55 | | -#undef HAVE_TM_ZONE /* struct tm has a tm_zone member */ |
56 | | -#undef HAVE_TZNAME /* extern char *tzname[] exists */ |
57 | | - |
58 | | -#undef HAVE_CLOCK /* clock() exists */ |
59 | | -#undef HAVE_FTIME /* ftime() exists */ |
60 | | -#undef HAVE_GETPEERNAME /* getpeername() exists */ |
61 | | -#undef HAVE_GETPGRP /* getpgrp() exists */ |
62 | | -#undef HAVE_GETTIMEOFDAY /* gettimeofday() exists */ |
63 | | -#undef HAVE_LSTAT /* lstat() exists */ |
64 | | -#undef HAVE_PROTOTYPES /* the compiler understands prototypes */ |
65 | | -#undef HAVE_READLINK /* readlink() exists */ |
66 | | -#undef HAVE_SELECT /* select() exists */ |
67 | | -#undef HAVE_SETPGID /* setpgid() exists */ |
68 | | -#undef HAVE_SETPGRP /* setpgrp() exists */ |
69 | | -#undef HAVE_SETSID /* setsid() exists */ |
70 | | -#undef HAVE_SYMLINK /* symlink() exists */ |
71 | | -#undef HAVE_SIGINTERRUPT /* siginterrupt() exists */ |
72 | | -#undef HAVE_TCGETPGRP /* tcgetpgrp() exists */ |
73 | | -#undef HAVE_TCSETPGRP /* tcsetpgrp() exists */ |
74 | | -#undef HAVE_TIMES /* times() exists */ |
75 | | -#undef HAVE_UNAME /* uname() exists */ |
76 | | -#undef HAVE_WAITPID /* waitpid() exists */ |
77 | | - |
78 | | -#undef GETPGRP_HAVE_ARG /* getpgrp() must be called as getpgrp(0) |
79 | | - (and setpgrp() as setpgrp(0, 0)) */ |
80 | | - |
81 | | -#undef WITH_READLINE /* GNU readline() should be used */ |
82 | | -#undef USE_THREAD /* Build in thread support */ |
83 | | -#undef SOLARIS /* This is SOLARIS 2.x */ |
| 1 | +/* Include/config.h.in. Generated automatically from configure.in by autoheader. */ |
| 2 | + |
| 3 | +/* Define if on AIX 3. |
| 4 | + System headers sometimes define this. |
| 5 | + We just want to avoid a redefinition error message. */ |
| 6 | +#ifndef _ALL_SOURCE |
| 7 | +#undef _ALL_SOURCE |
| 8 | +#endif |
| 9 | + |
| 10 | +/* Define to empty if the keyword does not work. */ |
| 11 | +#undef const |
| 12 | + |
| 13 | +/* Define if you have dirent.h. */ |
| 14 | +#undef DIRENT |
| 15 | + |
| 16 | +/* Define to the type of elements in the array set by `getgroups'. |
| 17 | + Usually this is either `int' or `gid_t'. */ |
| 18 | +#undef GETGROUPS_T |
| 19 | + |
| 20 | +/* Define to `int' if <sys/types.h> doesn't define. */ |
| 21 | +#undef gid_t |
| 22 | + |
| 23 | +/* Define if your struct tm has tm_zone. */ |
| 24 | +#undef HAVE_TM_ZONE |
| 25 | + |
| 26 | +/* Define if you don't have tm_zone but do have the external array |
| 27 | + tzname. */ |
| 28 | +#undef HAVE_TZNAME |
| 29 | + |
| 30 | +/* Define if on MINIX. */ |
| 31 | +#undef _MINIX |
| 32 | + |
| 33 | +/* Define to `int' if <sys/types.h> doesn't define. */ |
| 34 | +#undef mode_t |
| 35 | + |
| 36 | +/* Define if you don't have dirent.h, but have ndir.h. */ |
| 37 | +#undef NDIR |
| 38 | + |
| 39 | +/* Define to `long' if <sys/types.h> doesn't define. */ |
| 40 | +#undef off_t |
| 41 | + |
| 42 | +/* Define to `int' if <sys/types.h> doesn't define. */ |
| 43 | +#undef pid_t |
| 44 | + |
| 45 | +/* Define if the system does not provide POSIX.1 features except |
| 46 | + with this defined. */ |
| 47 | +#undef _POSIX_1_SOURCE |
| 48 | + |
| 49 | +/* Define if you need to in order for stat and other things to work. */ |
| 50 | +#undef _POSIX_SOURCE |
| 51 | + |
| 52 | +/* Define as the return type of signal handlers (int or void). */ |
| 53 | +#undef RETSIGTYPE |
| 54 | + |
| 55 | +/* Define to `unsigned' if <sys/types.h> doesn't define. */ |
| 56 | +#undef size_t |
| 57 | + |
| 58 | +/* Define if you have the ANSI C header files. */ |
| 59 | +#undef STDC_HEADERS |
| 60 | + |
| 61 | +/* Define if you don't have dirent.h, but have sys/dir.h. */ |
| 62 | +#undef SYSDIR |
| 63 | + |
| 64 | +/* Define if you don't have dirent.h, but have sys/ndir.h. */ |
| 65 | +#undef SYSNDIR |
| 66 | + |
| 67 | +/* Define if you can safely include both <sys/time.h> and <time.h>. */ |
| 68 | +#undef TIME_WITH_SYS_TIME |
| 69 | + |
| 70 | +/* Define if your <sys/time.h> declares struct tm. */ |
| 71 | +#undef TM_IN_SYS_TIME |
| 72 | + |
| 73 | +/* Define to `int' if <sys/types.h> doesn't define. */ |
| 74 | +#undef uid_t |
| 75 | + |
| 76 | +/* Define if the closedir function returns void instead of int. */ |
| 77 | +#undef VOID_CLOSEDIR |
| 78 | + |
| 79 | +/* Define if your <unistd.h> contains bad prototypes for exec*() |
| 80 | + (as it does on SGI IRIX 4.x) */ |
| 81 | +#undef BAD_EXEC_PROTOTYPES |
| 82 | + |
| 83 | +/* Define if getpgrp() must be called as getpgrp(0) |
| 84 | + and (consequently) setpgrp() as setpgrp(0, 0). */ |
| 85 | +#undef GETPGRP_HAVE_ARGS |
| 86 | + |
| 87 | +/* Define if your compiler supports function prototypes */ |
| 88 | +#undef HAVE_PROTOTYPES |
| 89 | + |
| 90 | +/* Define for SOLARIS 2.x */ |
| 91 | +#undef SOLARIS |
| 92 | + |
| 93 | +/* Define if it's a bad idea to include <sys/select.h> and <sys/time.h> |
| 94 | + in the same file (as it is on SCO ODT 3.0) */ |
| 95 | +#undef SYS_SELECT_WITH_SYS_TIME |
| 96 | + |
| 97 | +/* Define if you want to compile in rudimentary thread support */ |
| 98 | +#undef USE_THREAD |
| 99 | + |
| 100 | +/* Define if you want to use the GNU readline library */ |
| 101 | +#undef WITH_READLINE |
| 102 | + |
| 103 | +/* Define if you have clock. */ |
| 104 | +#undef HAVE_CLOCK |
| 105 | + |
| 106 | +/* Define if you have ftime. */ |
| 107 | +#undef HAVE_FTIME |
| 108 | + |
| 109 | +/* Define if you have getpeername. */ |
| 110 | +#undef HAVE_GETPEERNAME |
| 111 | + |
| 112 | +/* Define if you have getpgrp. */ |
| 113 | +#undef HAVE_GETPGRP |
| 114 | + |
| 115 | +/* Define if you have gettimeofday. */ |
| 116 | +#undef HAVE_GETTIMEOFDAY |
| 117 | + |
| 118 | +/* Define if you have getwd. */ |
| 119 | +#undef HAVE_GETWD |
| 120 | + |
| 121 | +/* Define if you have lstat. */ |
| 122 | +#undef HAVE_LSTAT |
| 123 | + |
| 124 | +/* Define if you have readline. */ |
| 125 | +#undef HAVE_READLINE |
| 126 | + |
| 127 | +/* Define if you have readlink. */ |
| 128 | +#undef HAVE_READLINK |
| 129 | + |
| 130 | +/* Define if you have select. */ |
| 131 | +#undef HAVE_SELECT |
| 132 | + |
| 133 | +/* Define if you have setpgid. */ |
| 134 | +#undef HAVE_SETPGID |
| 135 | + |
| 136 | +/* Define if you have setpgrp. */ |
| 137 | +#undef HAVE_SETPGRP |
| 138 | + |
| 139 | +/* Define if you have setsid. */ |
| 140 | +#undef HAVE_SETSID |
| 141 | + |
| 142 | +/* Define if you have siginterrupt. */ |
| 143 | +#undef HAVE_SIGINTERRUPT |
| 144 | + |
| 145 | +/* Define if you have symlink. */ |
| 146 | +#undef HAVE_SYMLINK |
| 147 | + |
| 148 | +/* Define if you have tcgetpgrp. */ |
| 149 | +#undef HAVE_TCGETPGRP |
| 150 | + |
| 151 | +/* Define if you have tcsetpgrp. */ |
| 152 | +#undef HAVE_TCSETPGRP |
| 153 | + |
| 154 | +/* Define if you have times. */ |
| 155 | +#undef HAVE_TIMES |
| 156 | + |
| 157 | +/* Define if you have uname. */ |
| 158 | +#undef HAVE_UNAME |
| 159 | + |
| 160 | +/* Define if you have waitpid. */ |
| 161 | +#undef HAVE_WAITPID |
| 162 | + |
| 163 | +/* Define if you have the <dlfcn.h> header file. */ |
| 164 | +#undef HAVE_DLFCN_H |
| 165 | + |
| 166 | +/* Define if you have the <signal.h> header file. */ |
| 167 | +#undef HAVE_SIGNAL_H |
| 168 | + |
| 169 | +/* Define if you have the <stdarg.h> header file. */ |
| 170 | +#undef HAVE_STDARG_H |
| 171 | + |
| 172 | +/* Define if you have the <stdlib.h> header file. */ |
| 173 | +#undef HAVE_STDLIB_H |
| 174 | + |
| 175 | +/* Define if you have the <sys/param.h> header file. */ |
| 176 | +#undef HAVE_SYS_PARAM_H |
| 177 | + |
| 178 | +/* Define if you have the <sys/select.h> header file. */ |
| 179 | +#undef HAVE_SYS_SELECT_H |
| 180 | + |
| 181 | +/* Define if you have the <sys/times.h> header file. */ |
| 182 | +#undef HAVE_SYS_TIMES_H |
| 183 | + |
| 184 | +/* Define if you have the <sys/un.h> header file. */ |
| 185 | +#undef HAVE_SYS_UN_H |
| 186 | + |
| 187 | +/* Define if you have the <sys/utsname.h> header file. */ |
| 188 | +#undef HAVE_SYS_UTSNAME_H |
| 189 | + |
| 190 | +/* Define if you have the <unistd.h> header file. */ |
| 191 | +#undef HAVE_UNISTD_H |
| 192 | + |
| 193 | +/* Define if you have the <utime.h> header file. */ |
| 194 | +#undef HAVE_UTIME_H |
| 195 | + |
| 196 | +/* Define if you have the dl library (-ldl). */ |
| 197 | +#undef HAVE_LIBDL |
| 198 | + |
| 199 | +/* Define if you have the mpc library (-lmpc). */ |
| 200 | +#undef HAVE_LIBMPC |
| 201 | + |
| 202 | +/* Define if you have the nsl library (-lnsl). */ |
| 203 | +#undef HAVE_LIBNSL |
| 204 | + |
| 205 | +/* Define if you have the seq library (-lseq). */ |
| 206 | +#undef HAVE_LIBSEQ |
| 207 | + |
| 208 | +/* Define if you have the socket library (-lsocket). */ |
| 209 | +#undef HAVE_LIBSOCKET |
| 210 | + |
| 211 | +/* Define if you have the sun library (-lsun). */ |
| 212 | +#undef HAVE_LIBSUN |
| 213 | + |
| 214 | +/* Define if you have the thread library (-lthread). */ |
| 215 | +#undef HAVE_LIBTHREAD |
0 commit comments