forked from xythian/wp-lambdamoo
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconfig.h.in
More file actions
359 lines (313 loc) · 12.5 KB
/
config.h.in
File metadata and controls
359 lines (313 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/******************************************************************************
Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
Pavel@Xerox.Com
*****************************************************************************/
/* If you're looking at this as `config.h.in', then this file is full of
* `#undef' preprocessor directives. The `configure' command, which generates
* `config.h' from `config.h.in', replaces appropriate ones of those `#undef's
* with `#define's, depending upon characteristics of the operating system,
* and comments out all of the others.
*/
#ifndef Config_H
#define Config_H 1
/* Some systems require that certain preprocessor symbols be defined in order
* for certain pieces of the C library to be available. If one of the
* following is defined, then your system is one such.
*/
#undef _ALL_SOURCE
#undef _POSIX_SOURCE
#undef _MINIX
#undef _POSIX_1_SOURCE
#undef _HPUX_SOURCE
#undef _XOPEN_SOURCE
#undef _GNU_SOURCE
/* The following symbols describe whether or not certain functions are declared
* in header files on your system and, if so, where. If, on your system, the
* functions `memcmp', `memcpy', etc. are not declared in <string.h>, but are
* instead in <memory.h>, then NEED_MEMORY_H will be defined. Similarly, if
* `malloc', `free', etc. are not declared in <stdlib.h>, but are instead in
* <malloc.h>, then NEED_MALLOC_H will be defined. If your system has the file
* </sys/bsdtypes.h>, then NEED_BSDTYPES_H will be defined.
*
* The various NDECL_* symbols are defined if the named function or variable is
* not declared in its standard place, which is given in a comment after each
* symbol. In several of the cases below, the absence of a declaration for the
* named function or variable is taken in the server code to imply the similar
* absence of declarations for several other related functions or variables.
*/
#undef NEED_MEMORY_H
#undef NEED_MALLOC_H
#undef NEED_BSDTYPES_H
#undef NEED_SELECT_H
#undef NDECL_TOLOWER /* <ctype.h> */
#undef NDECL_FCNTL /* <fcntl.h> */
#undef NDECL_HTONL /* <netinet/in.h> */
#undef NDECL_IN_ADDR_T /* <netinet/in.h> */
#undef NDECL_IOCTL /* <sys/ioctl.h> */
#undef NDECL_POLL /* <poll.h> */
#undef NDECL_KILL /* <signal.h> */
#undef NDECL_SIGEMPTYSET /* <signal.h> */
#undef NDECL_SIGPROCMASK /* <signal.h> */
#undef NDECL_SIGRELSE /* <signal.h> */
#undef NDECL_ACCEPT /* <sys/socket.h> */
#undef NDECL_BIND /* <sys/socket.h> */
#undef NDECL_SHUTDOWN /* <sys/socket.h> */
#undef NDECL_FSTAT /* <sys/stat.h> */
#undef NDECL_FCLOSE /* <stdio.h> */
#undef NDECL_PERROR /* <stdio.h> */
#undef NDECL_REMOVE /* <stdio.h> */
#undef NDECL_VFPRINTF /* <stdio.h> */
#undef NDECL_RANDOM /* <stdlib.h> */
#undef NDECL_SRANDOM /* <stdlib.h> */
#undef NDECL_STRTOD /* <stdlib.h> */
#undef NDECL_STRTOL /* <stdlib.h> */
#undef NDECL_STRTOUL /* <stdlib.h> */
#undef NDECL_BZERO /* <string.h> */
#undef NDECL_MEMCPY /* <string.h> */
#undef NDECL_MEMSET /* <string.h> */
#undef NDECL_STRERROR /* <string.h> */
#undef NDECL_GETITIMER /* <sys/time.h> */
#undef NDECL_SETITIMER /* <sys/time.h> */
#undef NDECL_SELECT /* <sys/time.h> */
#undef NDECL_STRFTIME /* <time.h> */
#undef NDECL_TIME /* <time.h> */
#undef NDECL_TZNAME /* <time.h> */
#undef NDECL_T_OPEN /* <tiuser.h> */
#undef NDECL_T_ERRLIST /* <tiuser.h> */
#undef NDECL_FORK /* <unistd.h> */
#undef NDECL_WAITPID /* <sys/wait.h> */
/* Some systems declare bzero() in places other than <string.h>. */
#undef BZERO_IN_STRINGS_H
#undef BZERO_IN_STDLIB_H
/* Some header files are only present on certain kinds of UNIXes (e.g., BSD,
* System V, or POSIX). The following symbols are defined only if the named
* header file exists on your system.
*/
#undef HAVE_MACHINE_ENDIAN_H
#undef HAVE_STDLIB_H
#undef HAVE_SYS_CDEFS_H
#undef HAVE_UNISTD_H
/* Some POSIX-standard typedefs are not present in some systems. The following
* symbols are defined as aliases for their usual definitions if they are not
* defined on your system.
*/
#undef pid_t
#undef mode_t
#undef size_t
/* To implement the LambdaMOO built-in function `ctime()', which converts a
* number of seconds since the POSIX `epoch' into a human-readable time/date
* string, the server code needs to be able to find out the name of the local
* time zone. This information is available in an obscure way from the ANSI
* standard function `strftime()', but many systems still don't implement it.
* The server has code to cope with this case, though, if your system maintains
* the time-zone name in one of two common places. Appropriate ones of the
* following symbols will be defined to tell the server how to get time-zone
* information on your system.
*/
#undef HAVE_STRFTIME
#undef TM_IN_SYS_TIME
#undef HAVE_TM_ZONE
#undef HAVE_TZNAME
/* Some compilers `almost' conform to the ANSI C standard, in that they provide
* the vast majority of the features and constructs used by the server code,
* but one common failing with which the code can cope is the lack of support
* for the `const' keyword. If your compiler doesn't support `const', then
* this symbol will be defined as a macro that expands into nothing, thus
* eliding all uses of the keyword in the code.
*/
#undef const
/* If GCC-style attributes are available, use them
*/
#undef HAVE_FUNC_ATTRIBUTE_FORMAT
#undef HAVE_FUNC_ATTRIBUTE_NORETURN
#undef HAVE_VAR_ATTRIBUTE_UNUSED
/* Certain functions used by the server are `optional', in the sense that the
* server can provide its own definition if necessary. In some cases, there
* are a number of common ways to do the same thing, differing by system type
* (e.g., BSD, System V, or POSIX). The following symbols are defined if your
* system provides the named functions.
*/
#undef HAVE_CRYPT
#undef HAVE_MATHERR
#undef HAVE_MKFIFO
#undef HAVE_REMOVE
#undef HAVE_RENAME
#undef HAVE_SELECT
#undef HAVE_POLL
#undef HAVE_STRERROR
#undef HAVE_STRTOUL
#undef HAVE_RANDOM
#undef HAVE_LRAND48
#undef HAVE_WAITPID
#undef HAVE_WAIT2
#undef HAVE_WAIT3
#undef HAVE_SIGEMPTYSET
#undef HAVE_SIGPROCMASK
#undef HAVE_SIGSETMASK
#undef HAVE_SIGRELSE
/* It used to be very much the fashion in UNIX programming to make use of
* certain standard header files depend on the programmer having #include'd
* other standard header files first. This is obviously losing and, amazingly,
* is also losing favor, replaced by the notion that every header file should
* #include whatever other headers it requires, and that all headers should
* take steps to ensure that they are not #include'd more than once if that
* would be bad. The following symbols are defined if the named header files
* fail to adhere to the new style; the server code makes up for them by doing
* its own #include of the usual prerequisite.
*/
#undef ARPA_INET_H_NEEDS_HELP
#undef SIGNAL_H_NEEDS_HELP
#undef SYS_SOCKET_H_NEEDS_HELP
#undef SYS_STAT_H_NEEDS_HELP
#undef TIME_H_NEEDS_HELP
/* Version 2 of the GNU C compiler includes `built-in' declarations for a
* number of standard functions from the ANSI header file <string.h>.
* Unfortunately, some systems declare these functions differently (and
* non-standardly) in their native header files, generating a warning about the
* conflict from GCC. If this is the case on your system, the following symbol
* will be defined, indicating that the server code should avoid your system's
* <string.h> file, using its own version instead.
*/
#undef USE_OWN_STRING_H
/* On some systems, notably AIX, both <sys/ioctl.h> and <stropts.h> define the
* internal macro `_IO' in compatible but different ways. This means that no
* program can #include both files without getting an error. If this is so on
* your machine, then the following symbol will be defined and the server code
* will carefully #undef _IO between inclusions of the two files.
*/
#undef UNDEF_IO_IN_STROPTS_H
/* The NS_SYSV/NP_LOCAL networking configuration of the server makes use of an
* operating system feature called `FIFO's for communication with clients of
* the MOO. In order to do this, the server needs some way to tell whether or
* not there's something ready to be read on a given FIFO at any given time.
* The BSD function `select()' usually works if it's available, but the System
* V equivalent, `poll()', sometimes does and sometimes doesn't, depending on
* the system. The POSIX definers, of course, took the coward's way out and
* didn't define any such function at all. On many systems, however, you can
* use the `fstat()' function to determine the number of bytes of data in a
* FIFO; this allows the use of a somewhat crocky but workable substitute for
* either `poll()' or `select()'. The following symbols are defined if the
* given function works to perform the necessary operation on FIFOs on your
* system.
*/
#undef FSTAT_WORKS_ON_FIFOS
#undef POLL_WORKS_ON_FIFOS
#undef SELECT_WORKS_ON_FIFOS
/* The POSIX standard specifies a nice, simple, reliable method for performing
* non-blocking I/O, and a lot of systems actually implement it. Some systems,
* though (notably Ultrix 4.1), misleadingly define the preprocessor symbols
* that might make you *think* that they've implemented it, but really they
* don't. This symbol is defined if POSIX-style non-blocking actually works on
* your system.
*/
#undef POSIX_NONBLOCKING_WORKS
/*
* Tests for C99 integer types
*/
#undef HAVE_LONG_LONG
#undef HAVE_UINT8_T
#undef HAVE_INT32_T
#undef HAVE_INT64_T
#undef HAVE_STRTOIMAX
#undef NEED_STDINT_H
#undef NEED_INTTYPES_H
/*
* 128-bit ints are not yet part of the standard but probably will be
* at some point. __int128 is a GNU extension that Clang also
* recognizes.
*/
#undef HAVE_INT128_T
#undef HAVE___INT128
/*
* __float128 is a GNU extension
*/
#undef HAVE___FLOAT128
#undef HAVE_QUADMATH_H
/*
* need endianness for iconv
*/
#undef WORDS_BIGENDIAN
/*----------------------*
| Extension settings |
*----------------------*/
/*
* --enable-unicode core implementation is present
* (we are using general UTF-8 in strings)
*/
#undef UNICODE_STRINGS
/*
* which unicode data library are we using?
*/
#undef UNICODE_DATA
/*
* are we using the Expat XML library?
*/
#undef EXPAT_XML
/* ... the ancient expat 1.2 build the
* extension was originally built with
*/
#undef EXPAT_XML_1_2_OR_BEFORE
/*
* --enable-waifs core implementation is present
* (we are recognizing/loading/storing waif values)
*/
#undef WAIF_CORE
/* continue on to the part that ./configure should not be touching */
#include "config_epilog.h"
#endif /* !Config_H */
/*
* $Log$
* Revision 2.5 1996/02/11 00:41:40 pavel
* Added check for matherr(). Release 1.8.0beta2.
*
* Revision 2.4 1996/02/08 07:23:16 pavel
* Added NDECL_STRTOD. Updated copyright notice for 1996.
* Release 1.8.0beta1.
*
* Revision 2.3 1996/01/11 07:49:01 pavel
* Added HAVE_CRYPT. Release 1.8.0alpha5.
*
* Revision 2.2 1995/12/31 03:18:30 pavel
* Added SYS_STAT_H_NEEDS_HELP. Release 1.8.0alpha4.
*
* Revision 2.1 1995/12/28 00:57:13 pavel
* Added definition of INT32_MAX. Release 1.8.0alpha3.
*
* Revision 2.0 1995/11/30 05:17:32 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.6 1993/10/11 19:25:17 pavel
* Changed from config.h.in to raw_config.h.in, along with several new tests
* being added.
*
* Revision 1.5 1992/10/28 01:57:38 pavel
* Changed NDECL_VPRINTF to NDECL_VFPRINTF, which is the one we care about...
*
* Revision 1.4 1992/10/23 23:11:21 pavel
* Added copyright notice.
*
* Revision 1.3 1992/10/23 19:19:22 pavel
* Added NEED_MALLOC_H, NDECL_{SIGEMPTYSET,FSTAT,PERROR,REMOVE,VPRINTF,MEMSET,
* FORK,WAITPID}, SELECT_WORKS_ON_FIFOS, and POSIX_NONBLOCKING_WORKS.
*
* Revision 1.2 1992/10/21 03:12:59 pavel
* Fixed up the comment leader string for this file.
*
* Revision 1.1 1992/10/21 03:06:52 pavel
* Initial RCS-controlled version.
*/
/* Local Variables: */
/* mode: c */
/* End: */