summaryrefslogtreecommitdiff
path: root/build_posix/aclocal/options.m4
blob: 8678c32a8034a867aeef2bee028504b26b5d2170 (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
# Copyright (c) 2008-2011 WiredTiger, Inc.
#	All rights reserved.

# Optional configuration.
AC_DEFUN([AM_OPTIONS], [

AH_TEMPLATE(HAVE_ATTACH, [Define to 1 to pause for debugger attach on failure.])
AC_MSG_CHECKING(if --enable-attach option specified)
AC_ARG_ENABLE(attach,
	[AC_HELP_STRING([--enable-attach],
	    [Configure for debugger attach on failure.])], r=$enableval, r=no)
case "$r" in
no)	db_cv_enable_attach=no;;
*)	AC_DEFINE(HAVE_ATTACH)
	db_cv_enable_attach=yes;;
esac
AC_MSG_RESULT($db_cv_enable_attach)

AC_MSG_CHECKING(if --enable-bzip2 option specified)
AC_ARG_ENABLE(debug,
	[AC_HELP_STRING([--enable-bzip2],
	    [Build the bzip2 compressor extention.])], r=$enableval, r=no)
case "$r" in
no)	db_cv_enable_bzip2=no;;
*)	db_cv_enable_bzip2=yes;;
esac
AC_MSG_RESULT($db_cv_enable_bzip2)
AM_CONDITIONAL(HAVE_BZIP2, test x$db_cv_enable_bzip2 = xyes)

AC_MSG_CHECKING(if --enable-debug option specified)
AC_ARG_ENABLE(debug,
	[AC_HELP_STRING([--enable-debug],
	    [Configure for debug symbols.])], r=$enableval, r=no)
case "$r" in
no)	db_cv_enable_debug=no;;
*)	db_cv_enable_debug=yes;;
esac
AC_MSG_RESULT($db_cv_enable_debug)

AH_TEMPLATE(HAVE_DIAGNOSTIC, [Define to 1 for diagnostic tests.])
AC_MSG_CHECKING(if --enable-diagnostic option specified)
AC_ARG_ENABLE(diagnostic,
	[AC_HELP_STRING([--enable-diagnostic],
	    [Configure for diagnostic tests.])], r=$enableval, r=no)
case "$r" in
no)	db_cv_enable_diagnostic=no;;
*)	AC_DEFINE(HAVE_DIAGNOSTIC)
	db_cv_enable_diagnostic=yes;;
esac
AC_MSG_RESULT($db_cv_enable_diagnostic)

AC_MSG_CHECKING(if --enable-python option specified)
AC_ARG_ENABLE(python,
	[AC_HELP_STRING([--enable-python],
	    [Configure for python symbols.])], r=$enableval, r=no)
case "$r" in
no)	db_cv_enable_python=no;;
*)	db_cv_enable_python=yes;;
esac
AC_MSG_RESULT($db_cv_enable_python)
AM_CONDITIONAL(PYTHON, test x$db_cv_enable_python = xyes)

AH_TEMPLATE(HAVE_VERBOSE, [Define to 1 to support the Env.verbose_set method.])
AC_MSG_CHECKING(if --enable-verbose option specified)
AC_ARG_ENABLE(verbose,
	[AC_HELP_STRING([--enable-verbose],
	    [Configure for Env.verbose_set method.])], r=$enableval, r=yes)
case "$r" in
no)	db_cv_enable_verbose=no;;
*)	AC_DEFINE(HAVE_VERBOSE)
	db_cv_enable_verbose=yes;;
esac
AC_MSG_RESULT($db_cv_enable_verbose)

])