From: Eric Le Bihan Date: Sun, 4 Feb 2018 18:07:44 +0000 (+0100) Subject: libssh2: add host variant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93a911fd5b14536e5c32298f0aa264c285015bcd;p=buildroot.git libssh2: add host variant Allow build of host variant of libssh2, which depends on host-openssl. Signed-off-by: Eric Le Bihan Signed-off-by: Peter Korsgaard --- diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk index 18e772c722..c5b0bd855e 100644 --- a/package/libssh2/libssh2.mk +++ b/package/libssh2/libssh2.mk @@ -40,4 +40,10 @@ else LIBSSH2_CONF_OPTS += --without-libz endif +HOST_LIBSSH2_DEPENDENCIES += host-openssl +HOST_LIBSSH2_CONF_OPTS += --with-openssl \ + --with-libssl-prefix=$(HOST_DIR)/usr \ + --without-libgcrypt + $(eval $(autotools-package)) +$(eval $(host-autotools-package))