From c93a8f3b40741cc0a0b20eaf2aa45f44dbf68596 Mon Sep 17 00:00:00 2001 From: Joris Vink Date: Fri, 18 Feb 2022 09:18:13 +0100 Subject: [PATCH] disallow ACME with TLS_BACKEND != openssl --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a132081..8c8e9d3 100644 --- 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)", "")