Skip to content
Snippets Groups Projects
Unverified Commit 6a5f7920 authored by Eneas U de Queiroz's avatar Eneas U de Queiroz
Browse files

afalg_engine: fix ENGINES location, zero-copy


Use a fixed ENGINES_DIR location, instead of trying to read it from the
openssl Makefile.

It also fixes the zero-copy config option not being passed down to the
cmake options.

Signed-off-by: default avatarEneas U de Queiroz <cotequeiroz@gmail.com>
parent b59f7eb8
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=afalg_engine
PKG_VERSION:=1.0.1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/cotequeiroz/afalg_engine/archive/v$(PKG_VERSION)
......@@ -22,10 +22,7 @@ PKG_CONFIG_DEPENDS:= CONFIG_AFALG_ZERO_COPY
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
$(eval $(shell grep "^ENGINES_DIR" "$(TOPDIR)/package/libs/openssl/Makefile"))
ifeq ($(ENGINES_DIR),)
ENGINES_DIR:=engines-1.1
endif
ENGINES_DIR:=engines-1.1
define Package/libopenssl-afalg_sync
SECTION:=libs
......@@ -59,7 +56,7 @@ endef
CMAKE_OPTIONS += \
-DOPENSSL_ENGINES_DIR=/usr/lib/$(ENGINES_DIR) \
-DUSE_ZERO_COPY=$(if $(AFALG_ZERO_COPY),ON,OFF)
-DUSE_ZERO_COPY=$(if $(CONFIG_AFALG_ZERO_COPY),ON,OFF)
define Package/libopenssl-afalg_sync/install
$(INSTALL_DIR) $(1)/usr/lib/$(ENGINES_DIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment