aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6cf41aa..4f6fb38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -57,8 +57,11 @@ AC_CHECK_HEADERS([err.h])
57AC_ARG_WITH([openssldir], 57AC_ARG_WITH([openssldir],
58 AS_HELP_STRING([--with-openssldir], 58 AS_HELP_STRING([--with-openssldir],
59 [Set the default openssl directory]), 59 [Set the default openssl directory]),
60 AC_DEFINE_UNQUOTED(OPENSSLDIR, "$withval") 60 OPENSSLDIR="$withval",
61 OPENSSLDIR="$sysconfdir/ssl"
61) 62)
63AC_SUBST(OPENSSLDIR)
64AC_DEFINE_UNQUOTED(OPENSSLDIR, "$OPENSSLDIR")
62 65
63AC_ARG_ENABLE([extratests], 66AC_ARG_ENABLE([extratests],
64 AS_HELP_STRING([--enable-extratests], [Enable extra tests that may be unreliable on some platforms])) 67 AS_HELP_STRING([--enable-extratests], [Enable extra tests that may be unreliable on some platforms]))