From 12acb5b77a961d424e0d2ff4d908fb72b28d2e7e Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Thu, 3 Jan 2019 12:05:55 -0800 Subject: [PATCH] libp11: Mandate ENGINE support libp11 uses OpenSSL's ENGINE quite extensively with seemingly no simple way to disable it. Add it as a dependency. Signed-off-by: Rosen Penev --- libs/libp11/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/libp11/Makefile b/libs/libp11/Makefile index 559a229c9..8d85aca95 100644 --- a/libs/libp11/Makefile +++ b/libs/libp11/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libp11 PKG_VERSION:=0.4.9 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=https://github.com/OpenSC/libp11/releases/download/$(PKG_NAME)-$(PKG_VERSION)/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -30,7 +30,7 @@ define Package/libp11 CATEGORY:=Libraries TITLE:=PKCS#11 wrapper library URL:=https://www.opensc-project.org/opensc/wiki/libp11 - DEPENDS:=+libopenssl + DEPENDS:=+libopenssl @OPENSSL_ENGINE CONFLICTS:=engine_pkcs11 endef