summaryrefslogtreecommitdiff
path: root/dist/configure.ac
blob: 74cb537898cba827d2af71a48aa4f039aea3258f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
# $Id$
# Process this file with autoconf to produce a configure script.

PACKAGE=db
AC_INIT(Berkeley DB, __EDIT_DB_VERSION__,
	[Oracle Technology Network Berkeley DB forum],
	db-__EDIT_DB_VERSION__)
AC_CONFIG_SRCDIR([../src/db/db.c])
AC_CONFIG_HEADERS([db_config.h:config.hin])

AC_CONFIG_MACRO_DIR([aclocal])

# We're going to pass options through to SQLite, don't check them first.
AC_DISABLE_OPTION_CHECKING()

# Configure setup.
AC_CANONICAL_HOST()
AC_ARG_PROGRAM()

# Don't build in the dist directory.
AC_MSG_CHECKING(if building in the top-level or dist directories)
if [ test -f configure.ac ] ; then
	AC_MSG_RESULT(yes)
	AC_MSG_ERROR([\
Berkeley DB should not be built in the "dist" directory. \
Change directory to the build_unix directory and run ../dist/configure \
from there.])
fi
AC_MSG_RESULT(no)

topdir=`echo "$srcdir/.." | sed 's,/dist/\.\.,,'`
# Substitution variables. BDB additions need to be documented.
AC_SUBST(ADDITIONAL_INCS)
AC_SUBST(ADDITIONAL_LANG)
AC_SUBST(ADDITIONAL_OBJS)
AC_SUBST(ADDITIONAL_PROGS)
AC_SUBST(BUILD_TARGET)
AC_SUBST(CFLAGS)
AC_SUBST(CONFIGURATION_ARGS)
AC_SUBST(CONFIGURATION_PATH)
AC_SUBST(CPPFLAGS)
AC_SUBST(CRYPTO_OBJS)
AC_SUBST(CXX)
AC_SUBST(CXXFLAGS)
AC_SUBST(DB_CONST)
AC_SUBST(DB_PROTO1)
AC_SUBST(DB_PROTO2)
AC_SUBST(DB_STRUCT_ALIGN8)
AC_SUBST(DEFAULT_LIB)
AC_SUBST(DEFAULT_LIB_CXX)
AC_SUBST(DEFAULT_LIB_SQL)
AC_SUBST(DEFAULT_LIB_SQLITE)
AC_SUBST(DEFAULT_LIB_STL)
AC_SUBST(DEFAULT_LIB_TCL)
AC_SUBST(DTRACE)
AC_SUBST(FINAL_OBJS)
AC_SUBST(INSTALLER)
AC_SUBST(INSTALL_LIBS)
AC_SUBST(INSTALL_LIBS_EXTRA)
AC_SUBST(INSTALL_TARGET)
AC_SUBST(JAR)
AC_SUBST(JAVACFLAGS)
AC_SUBST(LDFLAGS)
AC_SUBST(LIBCSO_LIBS)
AC_SUBST(LIBJSO_LIBS)
AC_SUBST(LIBS)
AC_SUBST(LIBSO_LIBS)
AC_SUBST(LIBTOOL)
AC_SUBST(LIBTSO_LIBS)
AC_SUBST(LIBTSO_MODSUFFIX)
AC_SUBST(LIBTSO_MODULE)
AC_SUBST(LIBXSO_LIBS)
AC_SUBST(LIBSQLSO_LIBS)
AC_SUBST(MAKEFILE_CC)
AC_SUBST(MAKEFILE_CCLINK)
AC_SUBST(MAKEFILE_CXX)
AC_SUBST(MAKEFILE_CXXLINK)
AC_SUBST(MAKEFILE_SOLINK)
AC_SUBST(MAKEFILE_XSOLINK)
AC_SUBST(OSDIR)
AC_SUBST(PATH_SEPARATOR)
AC_SUBST(POSTLINK)
AC_SUBST(PRINTLOG_OBJS)
AC_SUBST(REPLACEMENT_OBJS)
AC_SUBST(SOFLAGS)
AC_SUBST(SQL_FLAGS)
AC_SUBST(SQL_LIBS)
AC_SUBST(SWIGCFLAGS)
AC_SUBST(TEST_LIBS)
AC_SUBST(db_int_def)
AC_SUBST(o)
AC_SUBST(subdir_cmd)
AC_SUBST(topdir)

# The Windows public header has two extra symbols we need to remove.
AC_SUBST(platform_header)
AC_SUBST(platform_footer)

# Set the default installation location.
AC_PREFIX_DEFAULT(/usr/local/BerkeleyDB.__EDIT_DB_VERSION_MAJOR__.__EDIT_DB_VERSION_MINOR__)

# Configure the version information.
AC_SUBST(DB_VERSION_FAMILY)
DB_VERSION_FAMILY="__EDIT_DB_VERSION_FAMILY__"
AC_SUBST(DB_VERSION_RELEASE)
DB_VERSION_RELEASE="__EDIT_DB_VERSION_RELEASE__"
AC_SUBST(DB_VERSION_MAJOR)
DB_VERSION_MAJOR="__EDIT_DB_VERSION_MAJOR__"
AC_SUBST(DB_VERSION_MINOR)
DB_VERSION_MINOR="__EDIT_DB_VERSION_MINOR__"
AC_SUBST(DB_VERSION_PATCH)
DB_VERSION_PATCH="__EDIT_DB_VERSION_PATCH__"
AC_SUBST(DB_VERSION_STRING)
DB_VERSION_STRING='"__EDIT_DB_VERSION_STRING__"'
AC_SUBST(DB_VERSION_FULL_STRING)
DB_VERSION_FULL_STRING='"__EDIT_DB_VERSION_FULL_STRING__"'
AC_SUBST(DB_VERSION_UNIQUE_NAME)

# Process all options before using them.
AM_OPTIONS_SET

# Set some #defines based on configuration options.
if test "$db_cv_diagnostic" = "yes"; then
	AC_DEFINE(DIAGNOSTIC)
	AH_TEMPLATE(DIAGNOSTIC,
    [Define to 1 if you want a version with run-time diagnostic checking.])
fi
if test "$db_cv_debug_rop" = "yes"; then
	AC_DEFINE(DEBUG_ROP)
	AH_TEMPLATE(DEBUG_ROP,
    [Define to 1 if you want a version that logs read operations.])
fi
if test "$db_cv_debug_wop" = "yes"; then
	AC_DEFINE(DEBUG_WOP)
	AH_TEMPLATE(DEBUG_WOP,
    [Define to 1 if you want a version that logs write operations.])
fi
if test "$db_cv_umrw" = "yes"; then
	AC_DEFINE(UMRW)
	AH_TEMPLATE(UMRW,
    [Define to 1 to mask harmless uninitialized memory read/writes.])

fi
if test "$db_cv_test" = "yes"; then
	AC_DEFINE(CONFIG_TEST)
	AH_TEMPLATE(CONFIG_TEST,
    [Define to 1 if you want to build a version for running the test suite.])
fi

AH_TEMPLATE(HAVE_UPGRADE_SUPPORT,
    [Define to 1 if port includes historic database upgrade support.])
AC_DEFINE(HAVE_UPGRADE_SUPPORT)

# Check for programs used in building and installation.
AM_PROGRAMS_SET
AC_PROG_INSTALL

BUILD_TARGET="library_build"
INSTALL_TARGET="library_install"

# Respect the environment LIBS settings
LIBSO_LIBS="$LIBS"

# This is where we handle stuff that autoconf can't handle: compiler,
# preprocessor and load flags, libraries that the standard tests don't
# look for.
#
# There are additional libraries we need for some compiler/architecture
# combinations.
#
# Some architectures require DB to be compiled with special flags and/or
# libraries for threaded applications
#
# The makefile CC may be different than the CC used in config testing,
# because the makefile CC may be set to use $(LIBTOOL).
#
# Don't override anything if it's already set from the environment.
optimize_flag="-O"
extra_cflags=""

case "$host_os" in
aix4.3.*|aix[[5-9]]*)
	case "$host_os" in
	aix4.3.*)
		CPPFLAGS="$CPPFLAGS -D_LINUX_SOURCE_COMPAT";;
	esac
	# IBM's XLC compilers (at least versions 7/8/9) generate incorrect code
	# when ordinary optimization is enabled because they make strong
	# assumptions about the types held at each memory location, and some
	# Berkeley DB code violates those assumptions.  [#16141]
	extra_cflags=" -qalias=noansi"
	optimize_flag="-O2"
	CC=${CC-"xlc_r"}
	CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE"
	LDFLAGS="$LDFLAGS -Wl,-brtl";;
bsdi3*)	CC=${CC-"shlicc2"}
	LIBSO_LIBS="$LIBSO_LIBS -lipc";;
cygwin*)
	CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE -D_REENTRANT";;
freebsd*)
	CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE"
	LDFLAGS="$LDFLAGS -pthread";;
gnu*|k*bsd*-gnu|linux*)
	CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE -D_REENTRANT";;
hpux*)	CPPFLAGS="$CPPFLAGS -D_REENTRANT";;
irix*)	optimize_flag="-O2"
	CPPFLAGS="$CPPFLAGS -D_SGI_MP_SOURCE";;
mpeix*)	CPPFLAGS="$CPPFLAGS -D_POSIX_SOURCE -D_SOCKET_SOURCE"
	LIBSO_LIBS="$LIBSO_LIBS -lsocket -lsvipc";;
osf*)	CPPFLAGS="$CPPFLAGS -pthread";;
*qnx*)	qnx_build="yes"
	AC_DEFINE(HAVE_QNX)
	AH_TEMPLATE(HAVE_QNX, [Define to 1 if building on QNX.]);;
solaris*)
	CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS ";;
esac

# Set CFLAGS/CXXFLAGS.  We MUST set the flags before we call autoconf
# compiler configuration macros, because if we don't, they set CFLAGS
# to no optimization and -g, which isn't what we want.
#
# If the user wants a debugging environment, add -g the their compiler flags
# and don't automatically optimize.  If you want to compile with a different
# set of flags, specify CFLAGS in the environment before configuring.
if test "$db_cv_debug" = "yes"; then
	AC_DEFINE(DEBUG)
	AH_TEMPLATE(DEBUG, [Define to 1 if you want a debugging version.])

	CFLAGS="-g $CFLAGS"
else
	CFLAGS=${CFLAGS-$optimize_flag}
fi

CFLAGS="$CFLAGS$extra_cflags"

# The default compiler is cc (NOT gcc), the default CFLAGS is as specified
# above, NOT what is set by AC_PROG_CC, as it won't set optimization flags
# for any compiler other than gcc.
AC_PROG_CC(cc gcc)

# We know what compiler we're going to use, now.  Set per-compiler flags.
if test "$GCC" = "yes"; then
	# Use -O3 if we're using gcc, unless we're doing a small build, in
	# which case we use -Os alone.  The code size for -O3 is quite a
	# bit larger than -O2: a compromise is "-Os -finline-functions",
	# it's smaller and explicitly inlining the functions helps Berkeley
	# DB.
	CFLAGS="$CFLAGS "
	if test "$db_cv_smallbuild" = "yes"; then
		CFLAGS=`echo "$CFLAGS" | sed 's/-O /-Os /g'`
	else
		CFLAGS=`echo "$CFLAGS" | sed 's/-O /-O3 /g'`
	fi
else
	case "$host_os" in
	hpux11.0*)	;;
	hpux11*)	CPPFLAGS="$CPPFLAGS -mt"
			test "$host_cpu" = "ia64" &&
			    CFLAGS="$CFLAGS +u1";;
	solaris*)	CFLAGS="$CFLAGS "
			CFLAGS=`echo "$CFLAGS" | sed 's/-O /-xO2 /g'`;;
	esac
fi

CXXFLAGS=${CXXFLAGS-"$CFLAGS"}

# Check for "const" and "inline" keywords.
AC_C_CONST
AC_C_INLINE

# We use prototypes and the keyword "const" in db.h which doesn't include
# db_config.h, so we have to figure out what to do there.
#
# There is an autoconf AC_C_PROTOTYPES macro, but as all it does is define
# db_config.h variables, it doesn't help us.
#
# We don't have much choice, we look at internal autoconf variables.
if test "$ac_cv_c_const" != "yes"; then
	DB_CONST="#define const"
fi

# We use alignment attributes in db.h - figure out if the compiler supports
# them.
AC_CACHE_CHECK([for GCC aligned attribute], db_cv_aligned_attribute, [
AC_TRY_COMPILE(, __attribute__ ((aligned (8))) int i;,
    [db_cv_aligned_attribute=yes], [db_cv_aligned_attribute=no])])
if test "$db_cv_aligned_attribute" = "yes"; then
	DB_STRUCT_ALIGN8="__attribute__ ((aligned (8)))"
fi

# Clear __P, some other systems use it too.
DB_PROTO1="#undef __P"
if test "$ac_cv_prog_cc_c89" = "no"; then
	DB_PROTO2="#define	__P(protos)	()"
else
	DB_PROTO2="#define	__P(protos)	protos"
fi

# Because of shared library building, the ${CC} used for config tests
# may be different than the ${CC} we want to put in the Makefile.
# The latter is known as ${MAKEFILE_CC} in this script.
MAKEFILE_CC="${CC}"
MAKEFILE_CCLINK="${CC}"
MAKEFILE_CXX="nocxx"
MAKEFILE_CXXLINK="nocxx"

# See if we need the C++ compiler at all.  If so, we'd like to find one that
# interoperates with the C compiler we chose.  Since we prefered cc over gcc,
# we'll also prefer the vendor's compiler over g++/gcc.  If we're wrong, the
# user can set CC and CXX in their environment before running configure.
#
# AC_PROG_CXX sets CXX, but it uses $CXX and $CCC (in that order) as its
# first choices.
if test "$db_cv_cxx" = "yes"; then
	if test "$GCC" != "yes"; then
		case "$host_os" in
		aix*)		AC_CHECK_TOOL(CCC, xlC_r)
				LIBXSO_LIBS="-lC_r $LIBXSO_LIBS"
				LIBSO_LIBS="-lC_r $LIBSO_LIBS";;
		hpux*)		AC_CHECK_TOOL(CCC, aCC);;
		irix*)		AC_CHECK_TOOL(CCC, CC);;
		osf*)		AC_CHECK_TOOL(CCC, cxx)
				CXXFLAGS="$CXXFLAGS -D__USE_STD_IOSTREAM"
				test -d /usr/include.dtk &&
				    CXXFLAGS="$CXXFLAGS -I/usr/include.dtk";;
		solaris*)	AC_CHECK_TOOL(CCC, CC);;
		esac
	fi
	AC_PROG_CXX
	###### WORKAROUND: SEE SR #7938
	AC_PROG_CXXCPP
	###############################
	AC_CXX_STDHEADERS
	MAKEFILE_CXX="${CXX}"
	MAKEFILE_CXXLINK="${CXX}"
fi

# Do some gcc specific configuration.
AC_GCC_CONFIG1

# We need the -Kthread/-pthread flag when compiling on SCO/Caldera's UnixWare
# and OpenUNIX releases.  We can't make the test until we know which compiler
# we're using.
case "$host_os" in
sysv5UnixWare*|sysv5OpenUNIX8*)
	if test "$GCC" == "yes"; then
		CPPFLAGS="$CPPFLAGS -pthread"
		LDFLAGS="$LDFLAGS -pthread"
	else
		CPPFLAGS="$CPPFLAGS -Kthread"
		LDFLAGS="$LDFLAGS -Kthread"
	fi;;
esac

# Export our compiler preferences for the libtool configuration.
export CC CCC
CCC=$CXX

# Libtool configuration.
AC_PROG_LIBTOOL

SOFLAGS="-rpath \$(libdir)"

# Set SOSUFFIX and friends
SOSUFFIX_CONFIG
MODSUFFIX_CONFIG
JMODSUFFIX_CONFIG

LIBTOOL="./libtool"

INSTALLER="\$(LIBTOOL) --mode=install cp -p"

MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}"
MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version"
MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}"
MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}"
MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version"
MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}"


case "$host_os" in
cygwin* | mingw*)
	MAKEFILE_SOLINK="$MAKEFILE_SOLINK -no-undefined"
	MAKEFILE_XSOLINK="$MAKEFILE_XSOLINK -no-undefined";;
esac

case "$host_os" in
    darwin*)
        LIBTSO_MODULE=""
        LIBTSO_MODSUFFIX=".dylib";;
    *qnx*)
        LIBTSO_MODULE=""
        LIBTSO_MODSUFFIX=$MODSUFFIX;;
    *)
        LIBTSO_MODULE="-module"
        LIBTSO_MODSUFFIX=$MODSUFFIX;;
esac

if test "$enable_static" = "yes"; then
	test "$AR" = "false" && AC_MSG_ERROR([No ar utility found.])
fi

# C API.
if test "$enable_shared" = "no"; then
	DEFAULT_LIB="\$(libdb_version)"
	POSTLINK=": "
	o=".o"
else
	DEFAULT_LIB="\$(libso_target)"
	POSTLINK="\$(LIBTOOL) --mode=execute true"
	o=".lo"
fi
INSTALL_LIBS="$DEFAULT_LIB"
if test "$enable_static" = "yes"; then
	INSTALL_LIBS="$INSTALL_LIBS \$(libdb)"
fi

# Optional C++ API.
if test "$db_cv_cxx" = "yes"; then
	if test "$enable_shared" = "no"; then
		DEFAULT_LIB_CXX="\$(libcxx_version)"
	fi
	if test "$enable_shared" = "yes"; then
		DEFAULT_LIB_CXX="\$(libxso_target)"
	fi
	INSTALL_LIBS="$INSTALL_LIBS $DEFAULT_LIB_CXX"
	if test "$enable_static" = "yes"; then
		INSTALL_LIBS="$INSTALL_LIBS \$(libcxx)"
	fi
fi

# Optional Java API / JDBC.
if test "$db_cv_java" = "yes" -o "$db_cv_jdbc" = "yes"; then
	# BDB Java API requires shared libraries.
	if test "$db_cv_java" = "yes" -a "$enable_shared" = "no"; then
		AC_MSG_ERROR([Java requires shared libraries])
	fi

        # A classpath that includes . is needed to check for Java
	# Since Cygwin uses Windows' javac, we need Windows path separators
	case "$host_os" in 
	cygwin*)	CLASSPATH=".;$CLASSPATH";;
	*)		CLASSPATH=".:$CLASSPATH";;
	esac
	export CLASSPATH
	AC_PROG_JAVAC
	AC_PROG_JAR
	AC_PROG_JAVA
	AC_JNI_INCLUDE_DIR

	AC_MSG_CHECKING(java version)
        case "$JAVA" in
	*kaffe* )
		JAVA_VERSION=`$JAVA -version 2>&1 |
			sed -e '/Java Version:/!d' -e 's/.*Java Version: \([[^ 	]]*\)[[ 	]]*/\1/'` ;;
	* )	JAVA_VERSION=`$JAVA -version 2>&1 |
        	       	sed -e '/ version /!d' -e 's/.*"\(.*\)".*/\1/'` ;;
	esac
	AC_MSG_RESULT($JAVA_VERSION)
	case "$JAVA_VERSION" in
	1.[[3456789]]* | 1.[[1-9]][[0-9]]* | [[23456789]]* ) ;;
	* )
		AC_MSG_ERROR([Java version 1.3 or higher required, got $JAVA_VERSION]) ;;
	esac

	# Because of the code that SWIG generates to cast between pointers and
	# integers, we need to add the flag "-fno-strict-aliasing" to the gcc
	# command line when compiling the JNI code.  This is documented in
	# [#14953] and at http://www.swig.org/Doc1.3/Java.html
	if test "${GCC}" = "yes"; then
		SWIGCFLAGS="-fno-strict-aliasing"
	fi

	for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS
	do
		CPPFLAGS="$CPPFLAGS -I$JNI_INCLUDE_DIR"
	done

	if test "$db_cv_java" = "yes"; then
		ADDITIONAL_LANG="$ADDITIONAL_LANG java"
		INSTALL_LIBS="$INSTALL_LIBS \$(libjso_target)"
	fi
else
	JAVAC=nojavac
fi

# MinGW support.
if test "$db_cv_mingw" = "yes"; then
	OSDIR=os_windows
	PATH_SEPARATOR="\\\\/:"

	AC_DEFINE(DB_WIN32)
	AC_DEFINE(STDC_HEADERS)
else
	OSDIR=os
	PATH_SEPARATOR="/"
	AC_DEFINE(HAVE_SYSTEM_INCLUDE_FILES)
fi

# Optional SQL API.
if test "$db_cv_sql" = "yes"; then
	ADDITIONAL_INCS="$ADDITIONAL_INCS dbsql.h"
	ADDITIONAL_PROGS="$ADDITIONAL_PROGS dbsql"

	# Link against libdl, if found. It is only needed for the load
	# extension, but shouldn't hurt.
	AC_HAVE_LIBRARY(dl, [
		SQL_LIBS="$SQL_LIBS -ldl"
		LIBSQLSO_LIBS=" -ldl"
	])

	# Link against libedit or readline for command-line editing.
	if test x"$with_readline" != xno; then
		header=readline.h
		for rl_lib in edit readline; do
			found="yes"
			save_LIBS=""
			LIBS=""
			AS_UNSET(ac_cv_search_tgetent)
			AC_SEARCH_LIBS(tgetent,
			    [$rl_lib ncurses curses termcap],
			    [term_LIBS="$LIBS"], [term_LIBS=""])
			AC_CHECK_LIB([$rl_lib], [readline],
			    [SQL_LIBS="$SQL_LIBS -l$rl_lib $term_LIBS"],
			    [found="no"])
			LIBS="$save_LIBS"
			test "$found" = "yes" && break
		done

		if test x"$rl_lib" = xedit; then
			header="editline/readline.h"
		fi

		if test "$found" = "yes"; then
			AC_CHECK_HEADER($header, [found="yes"], [
				found="no"
				if test "$cross_compiling" != yes; then
					for dir in /usr /usr/local /usr/local/readline /usr/contrib /mingw; do
						for subdir in include include/readline; do
							AC_CHECK_FILE($dir/$subdir/$header, found=yes)
							if test "$found" = "yes"; then
								SQL_FLAGS="$SQL_FLAGS -I$dir/$subdir"
								break
							fi
						done
						test "$found" = "yes" && break
					done
				fi])
		fi
	fi

	if test "$enable_shared" = "no"; then
		DEFAULT_LIB_SQL="\$(libsql_version)"
	else
		DEFAULT_LIB_SQL="\$(libsqlso_target)"
	fi
	INSTALL_LIBS="$INSTALL_LIBS $DEFAULT_LIB_SQL"
	if test "$enable_static" = "yes"; then
		INSTALL_LIBS="$INSTALL_LIBS \$(libsql)"
	fi

	if test "$db_cv_test" = "yes"; then
		subdirs="$subdirs sql"
		ADDITIONAL_LANG="$ADDITIONAL_LANG sql-test"
	fi

	if test "$db_cv_jdbc" = "yes"; then
		subdirs="$subdirs jdbc"
		ADDITIONAL_LANG="$ADDITIONAL_LANG jdbc"
	fi

	if test "$db_cv_debug" = "yes"; then
		SQL_FLAGS="$SQL_FLAGS -DSQLITE_DEBUG=1"
	fi

	if test "$db_cv_build_cryptography" = "yes"; then
		SQL_FLAGS="$SQL_FLAGS -DSQLITE_HAS_CODEC=1"
	fi
fi

if test "$db_cv_sql_compat" = "yes"; then
	if test "$enable_shared" = "no"; then
		DEFAULT_LIB_SQLITE="\$(libsqlite)"
	else
		DEFAULT_LIB_SQLITE="\$(libsqliteso_target)"
	fi

	ADDITIONAL_INCS="$ADDITIONAL_INCS \$(langdir)/sql/generated/sqlite3.h"
	ADDITIONAL_PROGS="$ADDITIONAL_PROGS sqlite3"
	INSTALL_LIBS="$INSTALL_LIBS $DEFAULT_LIB_SQLITE"

	# This is different to the other libraries: we need to be very
	# careful not to delete an existing installation of SQLite unless
	# we are installing over it.
	if test "$enable_shared" = "yes"; then
		INSTALL_LIBS_EXTRA="$INSTALL_LIBS_EXTRA \$(libsqliteso)"
	fi
	if test "$enable_static" = "yes"; then
		INSTALL_LIBS="$INSTALL_LIBS \$(libsqlite)"
	fi
fi

# Optional SQL code generation tool.
if test "$db_cv_sql_codegen" = "yes"; then
	ADDITIONAL_PROGS="$ADDITIONAL_PROGS db_sql_codegen"
fi

# Optional STL API.
if test "$db_cv_stl" = "yes"; then
	AC_CXX_SUPPORTS_TEMPLATES
	AC_CXX_WSTRING
	AX_TLS
	if test "$enable_shared" = "no"; then
		DEFAULT_LIB_STL="\$(libstl_version)"
	fi
	if test "$enable_shared" = "yes"; then
		DEFAULT_LIB_STL="\$(libstlso_target)"
	fi
	ADDITIONAL_INCS="$ADDITIONAL_INCS dbstl_common.h"
	for f in dbstl_set.h dbstl_vector.h dbstl_exception.h dbstl_map.h dbstl_utility.h dbstl_dbc.h dbstl_dbt.h dbstl_base_iterator.h dbstl_container.h dbstl_element_ref.h dbstl_inner_utility.h dbstl_resource_manager.h ; do
		ADDITIONAL_INCS="$ADDITIONAL_INCS \$(topdir)/lang/cxx/stl/$f"
	done
	INSTALL_LIBS="$INSTALL_LIBS $DEFAULT_LIB_STL"
	if test "$enable_static" = "yes"; then
		INSTALL_LIBS="$INSTALL_LIBS \$(libstl)"
	fi
fi

# Checks for include files, structures, C types.
AC_HEADER_STAT
AC_HEADER_TIME
AC_HEADER_DIRENT
AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h sys/time.h)
AC_CHECK_MEMBERS([struct stat.st_blksize])
AM_TYPES

AC_CACHE_CHECK([for ANSI C exit success/failure values], db_cv_exit_defines, [
AC_TRY_COMPILE([#include <stdlib.h>], return (EXIT_SUCCESS);,
    [db_cv_exit_defines=yes], [db_cv_exit_defines=no])])
if test "$db_cv_exit_defines" = "yes"; then
	AC_DEFINE(HAVE_EXIT_SUCCESS)
	AH_TEMPLATE(HAVE_EXIT_SUCCESS,
	    [Define to 1 if platform has EXIT_SUCCESS/EXIT_FAILURE #defines.])
fi

AC_CACHE_CHECK([for getopt optreset variable], db_cv_optreset, [
AC_TRY_LINK([#include <unistd.h>], extern int optreset; optreset = 1;,
    [db_cv_optreset=yes], [db_cv_optreset=no])])
if test "$db_cv_optreset" = "yes"; then
	AC_DEFINE(HAVE_GETOPT_OPTRESET)
	AH_TEMPLATE(HAVE_GETOPT_OPTRESET,
	    [Define to 1 if getopt supports the optreset variable.])
fi

# Check for mutexes.
# We do this first because it changes $LIBSO_LIBS.
AM_DEFINE_MUTEXES

# Check for native (system call or instruction set) support for
# atomic increment, decrement, and compare & exchange.
AM_DEFINE_ATOMIC

# Check for os-specific event support for performance monitoring such as
# DTrace or SystemTap.
AM_DEFINE_PERFMON

# Test for various functions/libraries -- do tests that change library values
# first.
#
# Update LIBS, so we're testing against the current list of libraries.
LIBS="$LIBSO_LIBS"

# The yield function on Solaris is almost certainly pthread_yield (LWP threads
# or POSIX pthreads), or thr_yield (UI threads).  There's an outside chance it
# is sched_yield() though, only available in -lrt on Solaris.
AC_SEARCH_LIBS(sched_yield, rt)

# The Berkeley DB library calls fdatasync, only available in -lrt on Solaris.
AC_SEARCH_LIBS(fdatasync, rt)

AC_SEARCH_LIBS(getaddrinfo, nsl socket)
AC_SEARCH_LIBS(hstrerror, resolv)

# Those tests updated LIBS, update our internal list.
LIBSO_LIBS="$LIBS"

# !!!
# We could be more exact about whether these libraries are needed, but don't
# bother -- if they exist, we load them, it's only the test programs anyway.
AC_HAVE_LIBRARY(m, TEST_LIBS="$TEST_LIBS -lm")
AC_HAVE_LIBRARY(nsl, TEST_LIBS="$TEST_LIBS -lnsl")
AC_HAVE_LIBRARY(socket, TEST_LIBS="$TEST_LIBS -lsocket")

# Checks for system functions for which we have replacements.
#
# The only portable getcwd call is getcwd(char *, size_t), where the
# buffer is non-NULL -- Solaris can't handle a NULL buffer, and they
# deleted getwd().
AC_REPLACE_FUNCS(\
	abort atoi atol bsearch getcwd getenv getopt isalpha isdigit isprint\
	isspace memcmp memcpy memmove printf qsort raise rand\
	strcat strchr strdup strerror strncat strncmp strrchr strsep\
	strtol strtoul)
AH_TEMPLATE(HAVE_STRCASECMP,
    [Define to 1 if you have the strcasecmp symbol.])
AC_CHECK_DECL(strcasecmp, [AC_DEFINE(HAVE_STRCASECMP)], [AC_LIBOBJ(strcasecmp)])

# Check for system functions we optionally use.
AC_CHECK_FUNCS(\
	_fstati64 backtrace backtrace_symbols directio fchmod fclose\
	fcntl fdatasync fgetc fgets fopen fwrite getgid\
	getrusage getuid hstrerror mprotect pstat_getdynamic\
	pthread_self pthread_yield random sched_yield select setgid setuid\
	sigaction snprintf stat sysconf vsnprintf yield)

# The random_r/initstate_r/srandom_r functions in AIX and OSF/1 (Tru64) have
# atypical function signatures. Disable BerkeleyDB's use of those functions.
case "$host_os" in
aix*|osf*)
	AC_MSG_WARN([random_r is ignored on $host_os.]);;
*)
	AC_CHECK_FUNCS(initstate_r random_r srandom_r);;
esac

if test "$db_cv_error_history" = "yes"; then
	# Check for pthread thread local storage support
	AC_CHECK_FUNCS(pthread_getspecific pthread_setspecific)
	AC_CHECK_FUNCS(pthread_key_create pthread_once)
	if test "x$ac_cv_func_pthread_getspecific" = "xyes" -a \
		"x$ac_cv_func_pthread_setspecific" = "xyes" -a \
		"x$ac_cv_func_pthread_key_create" = "xyes" -a \
		"x$ac_cv_func_pthread_once" = "xyes"; then
		AC_DEFINE(HAVE_ERROR_HISTORY)
	else
		AC_MSG_ERROR([--enable-error_history requires pthread thread local storage])
	fi
	AH_TEMPLATE(HAVE_ERROR_HISTORY,
    [Define to 1 if you want a version that records extra information about errors.])
fi

AC_TIMERS

# Ftruncate.
# We've run into a problem with ftruncate on Alpha/Tru64, the issue is that
# after a truncate the last page of the file mmaps as all zeros.  So just don't
# use ftruncate.
case "$host_os" in
osf*)
	AC_MSG_WARN(
	    [ftruncate ignored on $host_os-$host_vendor.]);;
*)
	AC_CHECK_FUNCS(ftruncate);;
esac

# Pread/pwrite.
# HP-UX has pread/pwrite, but it doesn't work with largefile support.
# NCR's version of System V R 4.3 has pread/pwrite symbols, but no support.
case "$host_os-$host_vendor" in
hpux*|sysv4.3*-ncr)
	AC_MSG_WARN(
	    [pread/pwrite interfaces ignored on $host_os-$host_vendor.]);;
*)
	AC_CHECK_FUNCS(pread pwrite);;
esac

# Check for getaddrinfo; do the test explicitly instead of using AC_CHECK_FUNCS
# because <netdb.h> isn't a standard include file.
AC_CACHE_CHECK([for getaddrinfo], db_cv_getaddrinfo, [
AC_TRY_LINK([
#include <sys/types.h>
#include <netdb.h>], [
	getaddrinfo(0, 0, 0, 0);
], [db_cv_getaddrinfo=yes], [db_cv_getaddrinfo=no])])
if test "$db_cv_getaddrinfo" = "yes"; then
	AC_DEFINE(HAVE_GETADDRINFO)
	AH_TEMPLATE(HAVE_GETADDRINFO,
	    [Define to 1 if you have the `getaddrinfo' function.])
fi

# Check for the fcntl F_SETFD flag to deny child process access to file
# descriptors.
AC_CACHE_CHECK([for fcntl/F_SETFD], db_cv_fcntl_f_setfd, [
AC_TRY_LINK([
#include <sys/types.h>
#include <fcntl.h>], [
	fcntl(1, F_SETFD, 1);
], [db_cv_fcntl_f_setfd=yes], [db_cv_fcntl_f_setfd=no])])
if test "$db_cv_fcntl_f_setfd" = "yes"; then
	AC_DEFINE(HAVE_FCNTL_F_SETFD)
	AH_TEMPLATE(HAVE_FCNTL_F_SETFD,
    [Define to 1 if fcntl/F_SETFD denies child access to file descriptors.])
fi

# A/UX has a broken getopt(3).
case "$host_os" in
aux*)	AC_LIBOBJ([getopt]);;
esac

# Linux has a broken O_DIRECT flag, but you can't detect it at configure time.
# Linux and SGI require buffer alignment we may not match, otherwise writes
# will fail.  Default to not using the O_DIRECT flag.
if test "$db_cv_o_direct" = "yes"; then
	AC_CACHE_CHECK([for open/O_DIRECT], db_cv_open_o_direct, [
	AC_TRY_LINK([
	#include <sys/types.h>
	#include <fcntl.h>], [
		open("a", O_RDONLY | O_DIRECT, 0);
	], [db_cv_open_o_direct=yes], [db_cv_open_o_direct=no])])
	if test \
	    "$db_cv_o_direct" = "yes" -a "$db_cv_open_o_direct" = "yes"; then
		AC_DEFINE(HAVE_O_DIRECT)
		AH_TEMPLATE(HAVE_O_DIRECT,
		    [Define to 1 if you have the O_DIRECT flag.])
	fi
fi

# Check for largefile support.
AC_SYS_LARGEFILE

# Figure out how to create shared regions.
#
# First, we look for mmap.
#
# BSD/OS has mlock(2), but it doesn't work until the 4.1 release.
#
# Nextstep (version 3.3) apparently supports mmap(2) (the mmap symbol
# is defined in the C library) but does not support munmap(2).  Don't
# try to use mmap if we can't find munmap.
#
# Ultrix has mmap(2), but it doesn't work.
mmap_ok=no
case "$host_os" in
bsdi3*|bsdi4.0)
	AC_MSG_WARN([mlock(2) interface ignored on $host_os-$host_vendor.])
	mmap_ok=yes
	AC_CHECK_FUNCS(mmap munmap, , mmap_ok=no);;
ultrix*)
	AC_MSG_WARN([mmap(2) interface ignored on $host_os-$host_vendor.]);;
*)
	mmap_ok=yes
	AC_CHECK_FUNCS(mlock munlock)
	AC_CHECK_FUNCS(mmap munmap, , mmap_ok=no);;
esac

# Second, we look for shmget.
#
# SunOS has the shmget(2) interfaces, but there appears to be a missing
# #include <debug/debug.h> file, so we ignore them.
shmget_ok=no
case "$host_os" in
sunos*)
	AC_MSG_WARN([shmget(2) interface ignored on $host_os-$host_vendor.]);;
*)
	shmget_ok=yes
	AC_CHECK_FUNCS(shmget, , shmget_ok=no)

	# Check for shmctl to lock down shared memory segments.
	AC_CACHE_CHECK([for shmctl], db_cv_shmctl_shm_lock, [
	AC_TRY_LINK([
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdio.h>], [
		shmctl(0, SHM_LOCK, NULL);
	], [db_cv_shmctl_shm_lock=yes], [db_cv_shmctl_shm_lock=no])])
	if test "$db_cv_shmctl_shm_lock" = "yes"; then
		AC_DEFINE(HAVE_SHMCTL_SHM_LOCK)
		AH_TEMPLATE(HAVE_SHMCTL_SHM_LOCK,
	    [Define to 1 if shmctl/SHM_LOCK locks down shared memory segments.])
	fi;;
esac

# We require either mmap/munmap(2) or shmget(2).
if test "$mmap_ok" = "no" -a "$shmget_ok" = "no"; then
	AC_MSG_WARN([Neither mmap/munmap(2) or shmget(2) library functions.])
fi

# Optional Tcl support.
if test "$db_cv_tcl" = "yes"; then
	AM_TCL_LOAD
fi

# Optional sequence code.
AM_SEQUENCE_CONFIGURE

# Detect whether a large mmap() supports automatically extending the accessible
# region after growing the underlying file.
AM_MMAP_EXTEND

# Optional DB 1.85 compatibility API.
if test "$db_cv_compat185" = "yes"; then
	ADDITIONAL_INCS="db_185.h $ADDITIONAL_INCS"

	ADDITIONAL_OBJS="db185${o} $ADDITIONAL_OBJS"
fi

# Optional utilities.
if test "$db_cv_dump185" = "yes"; then
	ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS"
fi

# Log checksums can be disabled to increase performance
if test "$db_cv_log_checksum" = "yes"; then
	AC_DEFINE(HAVE_LOG_CHECKSUM)
	AH_TEMPLATE(HAVE_LOG_CHECKSUM, [Define to 1 if enabling checksums in log records.])
fi

# You can disable pieces of functionality to save space.
#
# Btree is always configured: it is the standard method, and Hash off-page
# duplicates require it.
ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(BTREE_OBJS)"

# Compression can be disabled.
if test "$db_cv_build_compression" = "yes"; then
	AC_DEFINE(HAVE_COMPRESSION)
	AH_TEMPLATE(HAVE_COMPRESSION, [Define to 1 if building compression support.])
fi

# Partitioning can be disabled.
if test "$db_cv_build_partition" = "yes"; then
	AC_DEFINE(HAVE_PARTITION)
	AH_TEMPLATE(HAVE_PARTITION, [Define to 1 if building partitioned database support.])
fi

# Hash can be disabled.
if test "$db_cv_build_hash" = "yes"; then
	AC_DEFINE(HAVE_HASH)
	AH_TEMPLATE(HAVE_HASH, [Define to 1 if building Hash access method.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(HASH_OBJS)"
	if test "$db_cv_build_verify" = "yes"; then
		ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(HASH_VRFY_OBJS)"
	fi
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS hash_stub${o}"
fi

# Heap can be disabled.
if test "$db_cv_build_heap" = "yes"; then
	AC_DEFINE(HAVE_HEAP)
	AH_TEMPLATE(HAVE_HEAP, [Define to 1 if building Heap access method.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(HEAP_OBJS)"
	if test "$db_cv_build_verify" = "yes"; then
		ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(HEAP_VRFY_OBJS)"
	fi
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS heap_stub${o}"
fi

# Queue can be disabled.
if test "$db_cv_build_queue" = "yes"; then
	AC_DEFINE(HAVE_QUEUE)
	AH_TEMPLATE(HAVE_QUEUE, [Define to 1 if building Queue access method.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(QUEUE_OBJS)"
	if test "$db_cv_build_verify" = "yes"; then
		ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(QUEUE_VRFY_OBJS)"
	fi
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS qam_stub${o}"
fi

# Replication can be disabled.
if test "$db_cv_build_replication" = "yes"; then
	AC_DEFINE(HAVE_REPLICATION)
	AH_TEMPLATE(HAVE_REPLICATION,
	    [Define to 1 if building replication support.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(REP_OBJS)"

	# If we're building replication and detected POSIX threads, build the
	# replication manager.
	AH_TEMPLATE(HAVE_REPLICATION_THREADS,
	    [Define to 1 if building the Berkeley DB replication framework.])

	if test "$ac_cv_header_pthread_h" = yes -a "$db_cv_mingw" != "yes"; then
		AC_DEFINE(HAVE_REPLICATION_THREADS)

		if test "$with_stacksize" != "no"; then
			AC_DEFINE_UNQUOTED(DB_STACKSIZE, $with_stacksize,
	    [Defined to a size to limit the stack size of Berkeley DB threads.])
		fi

		# Solaris requires the socket and nsl libraries to build the
		# replication manager.  Don't add nsl regardless of the OS,
		# it causes RPC to fail on AIX 4.3.3.
		case "$host_os" in
		solaris*)
			AC_HAVE_LIBRARY(nsl, LIBSO_LIBS="$LIBSO_LIBS -lnsl")
			AC_HAVE_LIBRARY(socket,
			    LIBSO_LIBS="$LIBSO_LIBS -lsocket");;
		esac
		ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(REPMGR_OBJS)"
	else
		AC_MSG_WARN([Replication manager is not supported.])
		ADDITIONAL_OBJS="$ADDITIONAL_OBJS repmgr_stub${o}"
	fi
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS rep_stub${o} repmgr_stub${o}"
fi

# The statistics code can be disabled.
if test "$db_cv_build_statistics" = "yes"; then
	AC_DEFINE(HAVE_STATISTICS)
	AH_TEMPLATE(HAVE_STATISTICS,
	    [Define to 1 if building statistics support.])
fi

# The verification code can be disabled.
if test "$db_cv_build_verify" = "yes"; then
	AC_DEFINE(HAVE_VERIFY)
	AH_TEMPLATE(HAVE_VERIFY,
	    [Define to 1 if building access method verification support.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(BTREE_VRFY_OBJS) \$(LOG_VRFY_OBJS)"
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS db_vrfy_stub${o} log_verify_stub${o}"
fi

# The crypto code can be disabled.
if test -d "$topdir/src/crypto" -a "$db_cv_build_cryptography" != "no"; then
	AC_DEFINE(HAVE_CRYPTO)
	AH_TEMPLATE(HAVE_CRYPTO,
	    [Define to 1 if building cryptography support.])

	CRYPTO_OBJS="\$(CRYPTO_OBJS)"

	if test "$db_cv_build_cryptography" = "ipp"; then
		AC_CHECK_HEADER([ippcp.h], [], AC_MSG_ERROR([\
The 'ippcp.h' header file required for IPP cryptography support was not found \
in the configured include path.]))
		AC_DEFINE(HAVE_CRYPTO_IPP)
		AH_TEMPLATE(HAVE_CRYPTO_IPP,
		    [Define to 1 if using Intel IPP for cryptography.])
	fi
else
	CRYPTO_OBJS="crypto_stub${o}"
fi

# The mutex code can be disabled, and if there aren't any mutexes, then there's
# no reason to include the locking code.
if test "$db_cv_build_mutexsupport" = "yes"; then
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(LOCK_OBJS) \$(MUTEX_OBJS)"
else
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS lock_stub${o} mut_stub${o}"
fi

# If DIAGNOSTIC is defined, include the log print routines in the library
# itself, various diagnostic modes use them.
if test "$db_cv_diagnostic" = "yes"; then
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS \$(PRINT_OBJS)"
	PRINTLOG_OBJS=""
else
	PRINTLOG_OBJS="\$(PRINT_OBJS)"
fi

# If building for QNX, we need additional OS files.
if test "$qnx_build" = "yes"; then
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS os_qnx_fsync${o} os_qnx_open${o}"
fi

# The DBM API can be disabled.
if test "$db_cv_dbm" = "yes"; then
	AC_DEFINE(HAVE_DBM)
	AH_TEMPLATE(HAVE_DBM, [Define to 1 if building the DBM API.])
	ADDITIONAL_OBJS="$ADDITIONAL_OBJS dbm${o} hsearch${o}"
fi

# The output and error messages can be stripped.
if test "$db_cv_stripped_messages" = "yes"; then
	AC_DEFINE(HAVE_STRIPPED_MESSAGES)
	AH_TEMPLATE(HAVE_STRIPPED_MESSAGES,
	    [Define to 1 if building without output message content.])
fi

# The output and error messages can be localized.
if test "$db_cv_localization" = "yes"; then
	AC_DEFINE(HAVE_LOCALIZATION)
	AH_TEMPLATE(HAVE_LOCALIZATION,
[Define to 1 if you have localization function to support globalization.])
fi

# We need to add the additional object files into the Makefile with the correct
# suffix.  We can't use $LTLIBOBJS itself, because that variable has $U encoded
# in it for automake, and that's not what we want.  See SR #7227 for additional
# information.
#
# XXX: I'm not sure this is correct.
REPLACEMENT_OBJS=`echo "$LIB@&t@OBJS" |
		sed "s,\.[[^.]]* ,$o ,g;s,\.[[^.]]*$,$o,"`

# This is necessary so that .o files in LIBOBJS are also built via
# the ANSI2KNR-filtering rules.
LIB@&t@OBJS=`echo "$LIB@&t@OBJS" |
		sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'`
LTLIBOBJS=`echo "$LIB@&t@OBJS" |
		sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`
AC_SUBST(LTLIBOBJS)

# Initial output file list.
CREATE_LIST="Makefile
    db_cxx.h:$topdir/src/dbinc/db_cxx.in
    db_int.h:$topdir/src/dbinc/db_int.in
    clib_port.h:$topdir/dist/clib_port.in
    include.tcl:$topdir/test/tcl/include.tcl"

# Create the db.h file from a source file, a list of global function
# prototypes, and, if configured for unique names, a list of #defines
# to do DB_VERSION_UNIQUE_NAME substitution.
if test "$db_cv_uniquename" = "yes"; then
	CREATE_LIST="$CREATE_LIST
	db.h:$topdir/src/dbinc/db.in:$topdir/src/dbinc_auto/api_flags.in:$topdir/src/dbinc_auto/ext_def.in:$topdir/src/dbinc_auto/ext_prot.in"
else
	CREATE_LIST="$CREATE_LIST
	db.h:$topdir/src/dbinc/db.in:$topdir/src/dbinc_auto/api_flags.in:$topdir/src/dbinc_auto/ext_prot.in"
fi

# If configured for unique names, create the db_int_uext.h file (which
# does the DB_VERSION_UNIQUE_NAME substitution), which is included by
# the db_int.h file.
if test "$db_cv_uniquename" = "yes"; then
	CREATE_LIST="$CREATE_LIST
	db_int_def.h:$topdir/src/dbinc_auto/int_def.in"
	db_int_def='#include "db_int_def.h"'
fi

# Create the db_185.h and db185_int.h files from source files, a list of
# global function prototypes, and, if configured for unique names, a list
# of #defines to do DB_VERSION_UNIQUE_NAME substitution.
if test "$db_cv_compat185" = "yes"; then
	if test "$db_cv_uniquename" = "yes"; then
		CREATE_LIST="$CREATE_LIST
		db_185.h:$topdir/src/dbinc/db_185.in:$topdir/src/dbinc_auto/ext_185_def.in:$topdir/src/dbinc_auto/ext_185_prot.in
		db185_int.h:$topdir/lang/db185/db185_int.in:$topdir/src/dbinc_auto/ext_185_def.in:$topdir/src/dbinc_auto/ext_185_prot.in"
	else
		CREATE_LIST="$CREATE_LIST
		db_185.h:$topdir/src/dbinc/db_185.in:$topdir/src/dbinc_auto/ext_185_prot.in
		db185_int.h:$topdir/lang/db185/db185_int.in:$topdir/src/dbinc_auto/ext_185_prot.in"
	fi
fi

if test "$db_cv_stl" = "yes"; then
	CREATE_LIST="$CREATE_LIST
	dbstl_common.h:$topdir/lang/cxx/stl/dbstl_common.in"
fi

if test "x$subdirs" != "x"; then
	subdir_cmd="@for d in ${subdirs}; do (cd \$\$d && \${MAKE} \$@) ; done"
fi

AC_CONFIG_FILES($CREATE_LIST)
AC_OUTPUT

if test "$db_cv_sql" = "yes"; then
	# This command runs the configure script from the SQL tree.
	AC_MSG_NOTICE([Configuring the SQL API])
	AC_SQL_CONFIG
fi