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