summaryrefslogtreecommitdiffstats
path: root/package/libssh/Config.in
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2015-10-01 21:30:48 +0300
committerPeter Korsgaard <peter@korsgaard.com>2015-10-02 16:41:02 +0200
commit0c30b838bc8eb2072eac2aa940e85e458d3b0cb7 (patch)
treeb296d9be02e8d7087266fbf67738be56e64d26f0 /package/libssh/Config.in
parent2b44749e9625d17eed450841c9c0cc85ac646129 (diff)
downloadbuildroot-0c30b838bc8eb2072eac2aa940e85e458d3b0cb7.tar.gz
buildroot-0c30b838bc8eb2072eac2aa940e85e458d3b0cb7.zip
libssh: bump to version 0.7.2
Also, require threads support. cmake detects threads support correctly, but libssh build system uses this information incorrectly. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libssh/Config.in')
-rw-r--r--package/libssh/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libssh/Config.in b/package/libssh/Config.in
index 30aabd621f..3357fb9e92 100644
--- a/package/libssh/Config.in
+++ b/package/libssh/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBSSH
bool "libssh"
depends on BR2_USE_MMU # fork()
depends on !BR2_STATIC_LIBS
+ depends on BR2_TOOLCHAIN_HAS_THREADS
# Either OpenSSL or libgcrypt are mandatory
select BR2_PACKAGE_LIBGCRYPT if !BR2_PACKAGE_OPENSSL
help
@@ -12,6 +13,6 @@ config BR2_PACKAGE_LIBSSH
http://www.libssh.org/
-comment "libssh needs a toolchain w/ dynamic library"
+comment "libssh needs a toolchain w/ dynamic library, threads"
depends on BR2_USE_MMU
- depends on BR2_STATIC_LIBS
+ depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
OpenPOWER on IntegriCloud