From 0d87ee96fcf31c47807ec0d50f33c7793585bd01 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Mon, 11 Sep 2023 09:28:16 +0800 Subject: [PATCH] Revert "libssh: compile against MbedTLS instead of OpenSSL" We prefer OpenSSL over MbedTLS by default. This reverts commit b95e1c56e7cfb5368567b74febefe8ccbdc86c10. Signed-off-by: Tianling Shen --- libs/libssh/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/libssh/Makefile b/libs/libssh/Makefile index 7cd1bd6b67..d2b1e7d94e 100644 --- a/libs/libssh/Makefile +++ b/libs/libssh/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libssh PKG_VERSION:=0.10.4 -PKG_RELEASE:=2 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://www.libssh.org/files/0.10/ @@ -32,7 +32,7 @@ define Package/libssh CATEGORY:=Libraries URL:=$(PKG_SOURCE_URL) TITLE:=SSH library - DEPENDS:=+libpthread +librt +zlib +libmbedtls + DEPENDS:=+libpthread +librt +zlib +libopenssl endef define Package/libssh/description @@ -46,7 +46,6 @@ CMAKE_OPTIONS += \ -DHAVE_TERMIOS_H=1 \ -DWITH_EXAMPLES:BOOL=OFF \ -DWITH_GCRYPT:BOOL=OFF \ - -DWITH_MBEDTLS:BOOL=ON \ -DWITH_GSSAPI:BOOL=OFF \ -DWITH_LIBZ:BOOL=ON \ -DWITH_NACL:BOOL=OFF \