diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2019-02-21 07:47:12 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2019-04-02 16:48:08 -0300 |
commit | 06e1764afa210fda00c17d2d919601e62ca216f3 (patch) | |
tree | 076e8150b33aaaf6e637a4c8dd4b241bac979977 /net | |
parent | 160e84e91f58840322e6bafbff0e74c0cb4d33e5 (diff) |
openssh: adjust engine support to openssl 1.1.1
Openssl 1.1.1 package in openwrt enabled more than just the devcrypto
engine, so the engine support in openssh should be enabled when general
engine support is enabled in openssl.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/openssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openssh/Makefile b/net/openssh/Makefile index d71cee690..39b02758f 100644 --- a/net/openssh/Makefile +++ b/net/openssh/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openssh PKG_VERSION:=7.9p1 -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ @@ -180,7 +180,7 @@ CONFIGURE_ARGS += \ --without-pam endif -ifeq ($(CONFIG_OPENSSL_ENGINE_CRYPTO),y) +ifeq ($(CONFIG_OPENSSL_ENGINE),y) CONFIGURE_ARGS+= \ --with-ssl-engine endif |