Imported Upstream version 5.3.21
[platform/upstream/libdb.git] / dist / wince_config.in
1 /* Define to 1 if you want to build a version for running the test suite. */
2 /* #undef CONFIG_TEST */
3
4 /* Defined to a size to limit the stack size of Berkeley DB threads. */
5 /* #undef DB_STACKSIZE */
6
7 /* We use DB_WIN32 much as one would use _WIN32 -- to specify that we're using
8    an operating system environment that supports Win32 calls and semantics. We
9    don't use _WIN32 because Cygwin/GCC also defines _WIN32, even though
10    Cygwin/GCC closely emulates the Unix environment. */
11 #define DB_WIN32 1
12
13 /* Define to 1 if you want a debugging version. */
14 #if defined(_DEBUG)
15 #if !defined(DEBUG)
16 #define DEBUG 1
17 #endif
18 #endif
19
20 /* Define to 1 if you want a version that logs read operations. */
21 /* #undef DEBUG_ROP */
22
23 /* Define to 1 if you want a version that logs write operations. */
24 /* #undef DEBUG_WOP */
25
26 /* Define to 1 if you want a version with run-time diagnostic checking. */
27 /* #undef DIAGNOSTIC */
28
29 /* Define to 1 if 64-bit types are available. */
30 #define HAVE_64BIT_TYPES 1
31
32 /* Define to 1 if you have the `abort' function. */
33 /* #undef HAVE_ABORT */
34
35 /* Define to 1 if you have the `atoi' function. */
36 #define HAVE_ATOI 1
37
38 /* Define to 1 if you have the `atol' function. */
39 #define HAVE_ATOL 1
40
41 /* Define to 1 if platform reads and writes files atomically. */
42 /* #undef HAVE_ATOMICFILEREAD */
43
44 /* Define to 1 to use Solaris library routes for atomic operations. */
45 /* #undef HAVE_ATOMIC_SOLARIS */
46
47 /* Define to 1 to use native atomic operations. */
48 #define HAVE_ATOMIC_SUPPORT 1
49
50 /* Define to 1 to use GCC and x86 or x86_64 assemlby language atomic
51    operations. */
52 /* #undef HAVE_ATOMIC_X86_GCC_ASSEMBLY */
53
54 /* Define to 1 if you have the `backtrace' function. */
55 /* #undef HAVE_BACKTRACE */
56
57 /* Define to 1 if you have the `backtrace_symbols' function. */
58 /* #undef HAVE_BACKTRACE_SYMBOLS */
59
60 /* Define to 1 if you have the `bsearch' function. */
61 /* #undef HAVE_BSEARCH */
62
63 /* Define to 1 if you have the `clock_gettime' function. */
64 /* #undef HAVE_CLOCK_GETTIME */
65
66 /* Define to 1 if clock_gettime supports CLOCK_MONOTONIC. */
67 /* #undef HAVE_CLOCK_MONOTONIC */
68
69 /* Define to 1 if building compression support. */
70 /* #undef HAVE_COMPRESSION */
71
72 /* Define to 1 if Berkeley DB release includes strong cryptography. */
73 #ifndef HAVE_SMALLBUILD
74 #define HAVE_CRYPTO 1
75 #endif
76
77 /* Define to 1 if using Intel IPP for cryptography. */
78 /* #undef HAVE_CRYPTO_IPP */
79
80 /* Define to 1 if you have the `ctime_r' function. */
81 /* #undef HAVE_CTIME_R  */
82
83 /* Define to 1 if ctime_r takes a buffer length as a third argument. */
84 /* #undef HAVE_CTIME_R_3ARG */
85
86 /* Define to 1 if building the DBM API. */
87 /* #undef HAVE_DBM */
88
89 /* Define to 1 if you have the `directio' function. */
90 /* #undef HAVE_DIRECTIO */
91
92 /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
93    */
94 /* #undef HAVE_DIRENT_H */
95
96 /* Define to 1 if you have the <dlfcn.h> header file. */
97 /* #undef HAVE_DLFCN_H */
98
99 /* Define to 1 to use dtrace for performance event tracing. */
100 /* #undef HAVE_DTRACE */
101
102 /* Define to 1 if you have the <execinfo.h> header file. */
103 /* #undef HAVE_EXECINFO_H */
104
105 /* Define to 1 if you have EXIT_SUCCESS/EXIT_FAILURE #defines. */
106 #define HAVE_EXIT_SUCCESS 1
107
108 /* Define to 1 if you have the `fchmod' function. */
109 /* #undef HAVE_FCHMOD */
110
111 /* Define to 1 if you have the `fclose' function. */
112 #define HAVE_FCLOSE 1
113
114 /* Define to 1 if you have the `fcntl' function. */
115 /* #undef HAVE_FCNTL */
116
117 /* Define to 1 if fcntl/F_SETFD denies child access to file descriptors. */
118 /* #undef HAVE_FCNTL_F_SETFD */
119
120 /* Define to 1 if you have the `fdatasync' function. */
121 /* #undef HAVE_FDATASYNC */
122
123 /* Define to 1 if you have the `fgetc' function. */
124 #define HAVE_FGETC 1
125
126 /* Define to 1 if you have the `fgets' function. */
127 #define HAVE_FGETS 1
128
129 /* Define to 1 if allocated filesystem blocks are not zeroed. */
130 #define HAVE_FILESYSTEM_NOTZERO 1
131
132 /* Define to 1 if you have the `fopen' function. */
133 #define HAVE_FOPEN 1
134
135 /* Define to 1 if you have the `ftruncate' function. */
136 #define HAVE_FTRUNCATE 1
137
138 /* Define to 1 if you have the `fwrite' function. */
139 #define HAVE_FWRITE 1
140
141 /* Define to 1 if you have the `getaddrinfo' function. */
142 /* #undef HAVE_GETADDRINFO */
143
144 /* Define to 1 if you have the `getcwd' function. */
145 /* #undef HAVE_GETCWD */
146
147 /* Define to 1 if you have the `getenv' function. */
148 /* #undef HAVE_GETENV */
149
150 /* Define to 1 if you have the `getgid' function. */
151 /* #undef HAVE_GETGID */
152
153 /* Define to 1 if you have the `getopt' function. */
154 /*
155  * Windows does not have the getopt function, but as Berkeley DB example
156  * programs require getopt, we handle it outside of this configuration.
157  */
158 #define HAVE_GETOPT 1
159
160 /* Define to 1 if getopt supports the optreset variable. */
161 #define HAVE_GETOPT_OPTRESET 1
162
163 /* Define to 1 if you have the `getrusage' function. */
164 /* #undef HAVE_GETRUSAGE */
165
166 /* Define to 1 if you have the `gettimeofday' function. */
167 /* #undef HAVE_GETTIMEOFDAY */
168
169 /* Define to 1 if you have the `getuid' function. */
170 /* #undef HAVE_GETUID */
171
172 /* Define to 1 if building Hash access method. */
173 #ifndef HAVE_SMALLBUILD
174 #define HAVE_HASH 1
175 #endif
176
177 /* Define to 1 if building Heap access method. */
178 #ifndef HAVE_SMALLBUILD
179 #define HAVE_HEAP 1
180 #endif
181
182 /* Define to 1 if you have the `hstrerror' function. */
183 /* #undef HAVE_HSTRERROR */
184
185 /* Define to 1 if you have the <inttypes.h> header file. */
186 /* #undef HAVE_INTTYPES_H */
187
188 /* Define to 1 if you have the `isalpha' function. */
189 #define HAVE_ISALPHA 1
190
191 /* Define to 1 if you have the `isdigit' function. */
192 #define HAVE_ISDIGIT 1
193
194 /* Define to 1 if you have the `isprint' function. */
195 #define HAVE_ISPRINT 1
196
197 /* Define to 1 if you have localization function to support globalization. */
198 /* #undef HAVE_LOCALIZATION */
199
200 /* Define to 1 if you have the `localtime' function. */
201 /* #undef HAVE_LOCALTIME */
202
203 /* Define to 1 if you have the `isspace' function. */
204 #define HAVE_ISSPACE 1
205
206 /* Define to 1 to enable log checksums. */
207 #define HAVE_LOG_CHECKSUM 1
208
209 /* Define to 1 if you have the `memcmp' function. */
210 #define HAVE_MEMCMP 1
211
212 /* Define to 1 if you have the `memcpy' function. */
213 #define HAVE_MEMCPY 1
214
215 /* Define to 1 if you have the `memmove' function. */
216 #define HAVE_MEMMOVE 1
217
218 /* Define to 1 if you have the <memory.h> header file. */
219 #define HAVE_MEMORY_H 1
220
221 /* Define to 1 if you have the `mlock' function. */
222 /* #undef HAVE_MLOCK */
223
224 /* Define to 1 if you have the `mmap' function. */
225 /* #undef HAVE_MMAP */
226
227 /* Define to 1 where mmap() incrementally extends the accessible mapping as
228    the underlying file grows. */
229 /* #undef HAVE_MMAP_EXTEND */
230
231 /* Define to 1 if you have the `mprotect' function. */
232 /* #undef HAVE_MPROTECT */
233
234 /* Define to 1 if you have the `munlock' function. */
235 /* #undef HAVE_MUNLOCK */
236
237 /* Define to 1 if you have the `munmap' function. */
238 /* #undef HAVE_MUNMAP */
239
240 /* Define to 1 to use the GCC compiler and 68K assembly language mutexes. */
241 /* #undef HAVE_MUTEX_68K_GCC_ASSEMBLY */
242
243 /* Define to 1 to use the AIX _check_lock mutexes. */
244 /* #undef HAVE_MUTEX_AIX_CHECK_LOCK */
245
246 /* Define to 1 to use the GCC compiler and Alpha assembly language mutexes. */
247 /* #undef HAVE_MUTEX_ALPHA_GCC_ASSEMBLY */
248
249 /* Define to 1 to use the GCC compiler and ARM assembly language mutexes. */
250 /* #undef HAVE_MUTEX_ARM_GCC_ASSEMBLY */
251
252 /* Define to 1 to use the Apple/Darwin _spin_lock_try mutexes. */
253 /* #undef HAVE_MUTEX_DARWIN_SPIN_LOCK_TRY */
254
255 /* Define to 1 to use the UNIX fcntl system call mutexes. */
256 /* #undef HAVE_MUTEX_FCNTL */
257
258 /* Define to 1 to use the GCC compiler and PaRisc assembly language mutexes.
259    */
260 /* #undef HAVE_MUTEX_HPPA_GCC_ASSEMBLY */
261
262 /* Define to 1 to use the msem_XXX mutexes on HP-UX. */
263 /* #undef HAVE_MUTEX_HPPA_MSEM_INIT */
264
265 /* Define to 1 to use test-and-set mutexes with blocking mutexes. */
266 /* #undef HAVE_MUTEX_HYBRID */
267
268 /* Define to 1 to use the GCC compiler and IA64 assembly language mutexes. */
269 /* #undef HAVE_MUTEX_IA64_GCC_ASSEMBLY */
270
271 /* Define to 1 to use the GCC compiler and MIPS assembly language mutexes. */
272 /* #undef HAVE_MUTEX_MIPS_GCC_ASSEMBLY */
273
274 /* Define to 1 to use the msem_XXX mutexes on systems other than HP-UX. */
275 /* #undef HAVE_MUTEX_MSEM_INIT */
276
277 /* Define to 1 to use the GCC compiler and PowerPC assembly language mutexes.
278    */
279 /* #undef HAVE_MUTEX_PPC_GCC_ASSEMBLY */
280
281 /* Define to 1 to use POSIX 1003.1 pthread_XXX mutexes. */
282 /* #undef HAVE_MUTEX_PTHREADS */
283
284 /* Define to 1 to use Reliant UNIX initspin mutexes. */
285 /* #undef HAVE_MUTEX_RELIANTUNIX_INITSPIN */
286
287 /* Define to 1 to use the IBM C compiler and S/390 assembly language mutexes.
288    */
289 /* #undef HAVE_MUTEX_S390_CC_ASSEMBLY */
290
291 /* Define to 1 to use the GCC compiler and S/390 assembly language mutexes. */
292 /* #undef HAVE_MUTEX_S390_GCC_ASSEMBLY */
293
294 /* Define to 1 to use the SCO compiler and x86 assembly language mutexes. */
295 /* #undef HAVE_MUTEX_SCO_X86_CC_ASSEMBLY */
296
297 /* Define to 1 to use the obsolete POSIX 1003.1 sema_XXX mutexes. */
298 /* #undef HAVE_MUTEX_SEMA_INIT */
299
300 /* Define to 1 to use the SGI XXX_lock mutexes. */
301 /* #undef HAVE_MUTEX_SGI_INIT_LOCK */
302
303 /* Define to 1 to use the Solaris _lock_XXX mutexes. */
304 /* #undef HAVE_MUTEX_SOLARIS_LOCK_TRY */
305
306 /* Define to 1 to use the Solaris lwp threads mutexes. */
307 /* #undef HAVE_MUTEX_SOLARIS_LWP */
308
309 /* Define to 1 to use the GCC compiler and Sparc assembly language mutexes. */
310 /* #undef HAVE_MUTEX_SPARC_GCC_ASSEMBLY */
311
312 /* Define to 1 if the Berkeley DB library should support mutexes. */
313 #define HAVE_MUTEX_SUPPORT 1
314
315 /* Define to 1 if mutexes hold system resources. */
316 /* #undef HAVE_MUTEX_SYSTEM_RESOURCES */
317
318 /* Define to 1 to configure mutexes intra-process only. */
319 /* #undef HAVE_MUTEX_THREAD_ONLY */
320
321 /* Define to 1 to use the CC compiler and Tru64 assembly language mutexes. */
322 /* #undef HAVE_MUTEX_TRU64_CC_ASSEMBLY */
323
324 /* Define to 1 to use the UNIX International mutexes. */
325 /* #undef HAVE_MUTEX_UI_THREADS */
326
327 /* Define to 1 to use the UTS compiler and assembly language mutexes. */
328 /* #undef HAVE_MUTEX_UTS_CC_ASSEMBLY */
329
330 /* Define to 1 to use VMS mutexes. */
331 /* #undef HAVE_MUTEX_VMS */
332
333 /* Define to 1 to use VxWorks mutexes. */
334 /* #undef HAVE_MUTEX_VXWORKS */
335
336 /* Define to 1 to use the MSVC compiler and Windows mutexes. */
337 #define HAVE_MUTEX_WIN32 1
338
339 /* Define to 1 to use the GCC compiler and Windows mutexes. */
340 /* #undef HAVE_MUTEX_WIN32_GCC */
341
342 /* Define to 1 to use the GCC compiler and 64-bit x86 assembly language
343    mutexes. */
344 /* #undef HAVE_MUTEX_X86_64_GCC_ASSEMBLY */
345
346 /* Define to 1 to use the GCC compiler and 32-bit x86 assembly language
347    mutexes. */
348 /* #undef HAVE_MUTEX_X86_GCC_ASSEMBLY */
349
350 /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
351 /* #undef HAVE_NDIR_H */
352
353 /* Define to 1 if you have the O_DIRECT flag. */
354 /* #undef HAVE_O_DIRECT */
355
356 /* Define to 1 if building partitioned database support. */
357 /* #undef HAVE_PARTITION */
358
359 /* Define to 1 to enable some kind of performance event monitoring. */
360 /* #undef HAVE_PERFMON */
361
362 /* Define to 1 to enable performance event monitoring of *_stat() statistics.
363    */
364 /* #undef HAVE_PERFMON_STATISTICS */
365
366 /* Define to 1 if you have the `pread' function. */
367 /* #undef HAVE_PREAD */
368
369 /* Define to 1 if you have the `printf' function. */
370 #define HAVE_PRINTF 1
371
372 /* Define to 1 if you have the `pstat_getdynamic' function. */
373 /* #undef HAVE_PSTAT_GETDYNAMIC */
374
375 /* Define to 1 if it is OK to initialize an already initialized
376    pthread_cond_t. */
377 /* #undef HAVE_PTHREAD_COND_REINIT_OKAY */
378
379 /* Define to 1 if it is OK to initialize an already initialized
380    pthread_rwlock_t. */
381 /* #undef HAVE_PTHREAD_RWLOCK_REINIT_OKAY */
382
383 /* Define to 1 if you have the `pthread_self' function. */
384 /* #undef HAVE_PTHREAD_SELF */
385
386 /* Define to 1 if you have the `pthread_yield' function. */
387 /* #undef HAVE_PTHREAD_YIELD */
388
389 /* Define to 1 if you have the `pwrite' function. */
390 /* #undef HAVE_PWRITE */
391
392 /* Define to 1 if building on QNX. */
393 /* #undef HAVE_QNX */
394
395 /* Define to 1 if you have the `qsort' function. */
396 #define HAVE_QSORT 1
397
398 /* Define to 1 if building Queue access method. */
399 #ifndef HAVE_SMALLBUILD
400 #define HAVE_QUEUE 1
401 #endif
402
403 /* Define to 1 if you have the `raise' function. */
404 #define HAVE_RAISE 1
405
406 /* Define to 1 if you have the `rand' function. */
407 #define HAVE_RAND 1
408
409 /* Define to 1 if you have the `random' function. */
410 /* #undef HAVE_RANDOM */
411
412 /* Define to 1 if building replication support. */
413 /* #undef HAVE_REPLICATION */
414
415 /* Define to 1 if building the Berkeley DB replication framework. */
416 /* #undef HAVE_REPLICATION_THREADS */
417
418 /* Define to 1 if you have the `sched_yield' function. */
419 /* #undef HAVE_SCHED_YIELD */
420
421 /* Define to 1 if you have the `select' function. */
422 /* #undef HAVE_SELECT */
423
424 /* Define to 1 if you have the `setgid' function. */
425 /* #undef HAVE_SETGID */
426
427 /* Define to 1 if you have the `setuid' function. */
428 #define HAVE_SETUID 1
429
430 /* Define to 1 to configure Berkeley DB to use shared, read/write latches. */
431 #define HAVE_SHARED_LATCHES 1
432
433 /* Define to 1 if shmctl/SHM_LOCK locks down shared memory segments. */
434 /* #undef HAVE_SHMCTL_SHM_LOCK */
435
436 /* Define to 1 if you have the `shmget' function. */
437 /* #undef HAVE_SHMGET */
438
439 /* Define to 1 if you have the `sigaction' function. */
440 /* #undef HAVE_SIGACTION */
441
442 /* Define to 1 if thread identifier type db_threadid_t is integral. */
443 #define HAVE_SIMPLE_THREAD_TYPE 1
444
445 /* Define to 1 if you have the `snprintf' function. */
446 #define HAVE_SNPRINTF 1
447
448 /* Define to 1 if you have the `stat' function. */
449 #define HAVE_STAT 1
450
451 /* Define to 1 if building statistics support. */
452 #define HAVE_STATISTICS 1
453
454 /* Define to 1 if you have the <stdint.h> header file. */
455 /* #undef HAVE_STDINT_H */
456
457 /* Define to 1 if you have the <stdlib.h> header file. */
458 #define HAVE_STDLIB_H 1
459
460 /* Define to 1 if you have the `strcasecmp' function. */
461 #define HAVE_STRCASECMP 1
462
463 /* Define to 1 if you have the `strcat' function. */
464 #define HAVE_STRCAT 1
465
466 /* Define to 1 if you have the `strchr' function. */
467 #define HAVE_STRCHR 1
468
469 /* Define to 1 if you have the `strdup' function. */
470 /* #undef HAVE_STRDUP */
471
472 /* Define to 1 if you have the `strerror' function. */
473 /* #undef HAVE_STRERROR */
474
475 /* Define to 1 if you have the `strftime' function. */
476 /* #undef HAVE_STRFTIME */
477
478 /* Define to 1 if you have the <strings.h> header file. */
479 #define HAVE_STRINGS_H 1
480
481 /* Define to 1 if you have the <string.h> header file. */
482 #define HAVE_STRING_H 1
483
484 /* Define to 1 if building without output message content. */
485 #ifdef HAVE_SMALLBUILD
486 #define HAVE_STRIPPED_MESSAGES 1
487 #endif
488
489 /* Define to 1 if you have the `strncat' function. */
490 #define HAVE_STRNCAT 1
491
492 /* Define to 1 if you have the `strncmp' function. */
493 #define HAVE_STRNCMP 1
494
495 /* Define to 1 if you have the `strrchr' function. */
496 #define HAVE_STRRCHR 1
497
498 /* Define to 1 if you have the `strsep' function. */
499 /* #undef HAVE_STRSEP */
500
501 /* Define to 1 if you have the `strtol' function. */
502 #define HAVE_STRTOL 1
503
504 /* Define to 1 if you have the `strtoul' function. */
505 #define HAVE_STRTOUL 1
506
507 /* Define to 1 if `st_blksize' is member of `struct stat'. */
508 /* #undef HAVE_STRUCT_STAT_ST_BLKSIZE */
509
510 /* Define to 1 if you have the `sysconf' function. */
511 /* #undef HAVE_SYSCONF */
512
513 /* Define to 1 if port includes files in the Berkeley DB source code. */
514 /* #undef HAVE_SYSTEM_INCLUDE_FILES */
515
516 /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
517    */
518 /* #undef HAVE_SYS_DIR_H */
519
520 /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
521    */
522 /* #undef HAVE_SYS_NDIR_H */
523
524 /* Define to 1 if you have the <sys/sdt.h> header file. */
525 /* #undef HAVE_SYS_SDT_H */
526
527 /* Define to 1 if you have the <sys/select.h> header file. */
528 /* #undef HAVE_SYS_SELECT_H */
529
530 /* Define to 1 if you have the <sys/socket.h> header file. */
531 /* #undef HAVE_SYS_SOCKET_H */
532
533 /* Define to 1 if you have the <sys/stat.h> header file. */
534 #define HAVE_SYS_STAT_H 1
535
536 /* Define to 1 if you have the <sys/time.h> header file. */
537 /* #undef HAVE_SYS_TIME_H */
538
539 /* Define to 1 if you have the <sys/types.h> header file. */
540 #define HAVE_SYS_TYPES_H 1
541
542 /* Define to 1 if you have the `time' function. */
543 /* #undef HAVE_TIME */
544
545 /* Define to 1 if you have the <unistd.h> header file. */
546 /* #undef HAVE_UNISTD_H */
547
548 /* Define to 1 if unlink of file with open file descriptors will fail. */
549 /* #undef HAVE_UNLINK_WITH_OPEN_FAILURE */
550
551 /* Define to 1 if port includes historic database upgrade support. */
552 /* #undef HAVE_UPGRADE_SUPPORT */
553
554 /* Define to 1 if building access method verification support. */
555 #ifndef HAVE_SMALLBUILD
556 #define HAVE_VERIFY 1
557 #endif
558
559 /* Define to 1 if you have the `vsnprintf' function. */
560 #define HAVE_VSNPRINTF 1
561
562 /* Define to 1 if building VxWorks. */
563 /* #undef HAVE_VXWORKS */
564
565 /* Define to 1 if you have the `yield' function. */
566 /* #undef HAVE_YIELD */
567
568 /* Define to 1 if you have the `_fstati64' function. */
569 #define HAVE__FSTATI64 1
570
571 /* Define to the sub-directory in which libtool stores uninstalled libraries. */
572 /* #undef LT_OBJDIR */
573
574 /* Define to the address where bug reports for this package should be sent. */
575 #define PACKAGE_BUGREPORT "Oracle Technology Network Berkeley DB forum"
576
577 /* Define to the full name of this package. */
578 #define PACKAGE_NAME "Berkeley DB"
579
580 /* Define to the full name and version of this package. */
581 #define PACKAGE_STRING "Berkeley DB __EDIT_DB_VERSION__"
582
583 /* Define to the one symbol short name of this package. */
584 #define PACKAGE_TARNAME "db-__EDIT_DB_VERSION__"
585
586 /* Define to the home page for this package. */
587 #define PACKAGE_URL "http://www.oracle.com/technology/software/products/berkeley-db/index.html"
588
589 /* Define to the version of this package. */
590 #define PACKAGE_VERSION "__EDIT_DB_VERSION__"
591
592 /* The size of a `char', as computed by sizeof. */
593 /* #undef SIZEOF_CHAR */
594
595 /* The size of a `char *', as computed by sizeof. */
596 /* #undef SIZEOF_CHAR_P */
597
598 /* The size of a `int', as computed by sizeof. */
599 /* #undef SIZEOF_INT */
600
601 /* The size of a `long', as computed by sizeof. */
602 /* #undef SIZEOF_LONG */
603
604 /* The size of a `long long', as computed by sizeof. */
605 /* #undef SIZEOF_LONG_LONG */
606
607 /* The size of a `short', as computed by sizeof. */
608 /* #undef SIZEOF_SHORT */
609
610 /* The size of a `size_t', as computed by sizeof. */
611 /* #undef SIZEOF_SIZE_T */
612
613 /* The size of a `unsigned char', as computed by sizeof. */
614 /* #undef SIZEOF_UNSIGNED_CHAR */
615
616 /* The size of a `unsigned int', as computed by sizeof. */
617 /* #undef SIZEOF_UNSIGNED_INT */
618
619 /* The size of a `unsigned long', as computed by sizeof. */
620 /* #undef SIZEOF_UNSIGNED_LONG */
621
622 /* The size of a `unsigned long long', as computed by sizeof. */
623 /* #undef SIZEOF_UNSIGNED_LONG_LONG */
624
625 /* The size of a `unsigned short', as computed by sizeof. */
626 /* #undef SIZEOF_UNSIGNED_SHORT */
627
628 /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
629 /* #undef STAT_MACROS_BROKEN */
630
631 /* Define to 1 if you have the ANSI C header files. */
632 #define STDC_HEADERS 1
633
634 /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
635 /* #undef TIME_WITH_SYS_TIME */
636
637 /* Define to 1 to mask harmless uninitialized memory read/writes. */
638 /* #undef UMRW */
639
640 /* Number of bits in a file offset, on hosts where this is settable. */
641 /* #undef _FILE_OFFSET_BITS */
642
643 /* Define for large files, on AIX-style hosts. */
644 /* #undef _LARGE_FILES */
645
646 /* Define to empty if `const' does not conform to ANSI C. */
647 /* #undef const */
648
649 /* Define to `__inline__' or `__inline' if that's what the C compiler
650    calls it, or to nothing if 'inline' is not supported under any name.  */
651 #ifndef __cplusplus
652 #define inline __inline
653 #endif
654
655 /* type to use in place of socklen_t if not defined */
656 /* #undef socklen_t */