USE_GCRYPT=0 disables using gcrypt for signature verification. Signed-off-by: Kel Modderman <kel@xxxxxxxxxx> --- --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ CFLAGS += -DUSE_OPENSSL -DPUBKEY_DIR=\"$ LDLIBS += `pkg-config --libs openssl` else +ifneq ($(USE_GCRYPT),0) PUBKEY_DIR?=pubkeys CFLAGS += -DUSE_GCRYPT LDLIBS += -lgcrypt @@ -40,6 +41,7 @@ keys-gcrypt: utils/key2pub.py $(wildcard $(Q)./utils/key2pub.py $(wildcard $(PUBKEY_DIR)/*.pem) $@ endif +endif MKDIR ?= mkdir -p INSTALL ?= install --- -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html