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