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