summaryrefslogtreecommitdiffstats
path: root/m4/pdns_enable_ipcipher.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
commit3cd01b932e1c85394272ae64fae67ebeda92fb00 (patch)
treec5a3115d710afc1879ddea5349362a2bc651733c /m4/pdns_enable_ipcipher.m4
parentInitial commit. (diff)
downloaddnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.tar.xz
dnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.zip
Adding upstream version 1.8.3.upstream/1.8.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/pdns_enable_ipcipher.m4')
-rw-r--r--m4/pdns_enable_ipcipher.m426
1 files changed, 26 insertions, 0 deletions
diff --git a/m4/pdns_enable_ipcipher.m4 b/m4/pdns_enable_ipcipher.m4
new file mode 100644
index 0000000..daa92c3
--- /dev/null
+++ b/m4/pdns_enable_ipcipher.m4
@@ -0,0 +1,26 @@
+AC_DEFUN([PDNS_ENABLE_IPCIPHER], [
+ AC_MSG_CHECKING([whether to enable ipcipher support])
+ HAVE_IPCIPHER=0
+ AC_ARG_ENABLE([ipcipher],
+ AS_HELP_STRING([--enable-ipcipher], [enable ipcipher support (requires libcrypto) @<:@default=auto@:>@]),
+ [enable_ipcipher=$enableval],
+ [enable_ipcipher=auto]
+ )
+ AC_MSG_RESULT([$enable_ipcipher])
+
+ AS_IF([test "x$enable_ipcipher" != "xno"], [
+ AS_IF([test "x$enable_ipcipher" = "xyes" -o "x$enable_ipcipher" = "xauto"], [
+ AM_COND_IF([HAVE_LIBCRYPTO], [
+ AC_DEFINE([HAVE_IPCIPHER], [1], [Define to 1 if you enable ipcipher support])
+ [HAVE_IPCIPHER=1]
+ ])
+ ])
+ ])
+ AM_CONDITIONAL([IPCIPHER], [test "x$HAVE_IPCIPHER" != "x0"])
+
+ AS_IF([test "x$enable_ipcipher" = "xyes"], [
+ AS_IF([test x"$HAVE_IPCIPHER" = "x0"], [
+ AC_MSG_ERROR([ipcipher support requested but libcrypto is not available])
+ ])
+ ])
+])