From: Arran Cudbard-Bell Date: Mon, 12 Oct 2015 21:31:46 +0000 (-0400) Subject: Don't build EAP-PWD if we're building without OpenSSL X-Git-Tag: release_3_0_11~263 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdeef499b7c0ba061a265b3e9fa8cfb6b263696d;p=thirdparty%2Ffreeradius-server.git Don't build EAP-PWD if we're building without OpenSSL --- diff --git a/src/modules/rlm_eap/types/rlm_eap_pwd/all.mk.in b/src/modules/rlm_eap/types/rlm_eap_pwd/all.mk.in index e62d5d861d7..e04ec270eac 100644 --- a/src/modules/rlm_eap/types/rlm_eap_pwd/all.mk.in +++ b/src/modules/rlm_eap/types/rlm_eap_pwd/all.mk.in @@ -1,8 +1,10 @@ TARGETNAME := @targetname@ +ifneq "$(OPENSSL_LIBS)" "" ifneq "$(TARGETNAME)" "" TARGET := $(TARGETNAME).a endif +endif SOURCES := $(TARGETNAME).c eap_pwd.c