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