disallow ACME with TLS_BACKEND != openssl

This commit is contained in:
Joris Vink 2022-02-18 09:18:13 +01:00
parent b20d26e839
commit c93a8f3b40
1 changed files with 4 additions and 0 deletions

View File

@ -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)", "")