diff options
author | Peter Wagner <tripolar@gmx.at> | 2018-10-20 14:06:20 +0200 |
---|---|---|
committer | Peter Wagner <tripolar@gmx.at> | 2018-10-20 14:06:20 +0200 |
commit | 08c5f7cfabf6f01890b11905dd12661d7a33a9b6 (patch) | |
tree | 873f88bcbcf9c9f372d5f72e19947604909b105d /net/openssh/Makefile | |
parent | 414df31c74b28c6ac33d27434f0fdf85adbddfc0 (diff) |
openssh: fixes issues with some openssl options
This adds a couple of patches when setting some openssl options:
* ECDSA code in openssh-compat.h and libressl-api-compat.c needs to be
be guarded by OPENSSL_HAS_ECC; otherwise, it will not build with
openssl compiled without ECC support.
* Fix openssl version number in openbsd-compat/openssl-compat.c which
failed to compile --with-ssl-engine; this option is used when
CONFIG_OPENSSL_ENGINE_CRYPTO=y
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Signed-off-by: Peter Wagner <tripolar@gmx.at>
Diffstat (limited to 'net/openssh/Makefile')
-rw-r--r-- | net/openssh/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/openssh/Makefile b/net/openssh/Makefile index ae567d464..09063abaa 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:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ \ @@ -23,7 +23,6 @@ PKG_LICENSE_FILES:=LICENCE PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) PKG_REMOVE_FILES:= -PKG_FIXUP:=autoreconf include $(INCLUDE_DIR)/package.mk |