commit c93a8f3b40741cc0a0b20eaf2aa45f44dbf68596
parent b20d26e8394798db91978767799c9c1afe6e2a87
Author: Joris Vink <joris@coders.se>
Date: Fri, 18 Feb 2022 09:18:13 +0100
disallow ACME with TLS_BACKEND != openssl
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -47,6 +47,10 @@ ifeq ("$(TLS_BACKEND)", "openssl")
else
LDFLAGS+=-lssl -l$(KORE_CRYPTO)
endif
+else
+ifneq ("$(ACME)", "")
+$(error ACME not supported under TLS backend $(TLS_BACKEND))
+endif
endif
ifneq ("$(KORE_SINGLE_BINARY)", "")