2015-08-30 18:05:10 +02:00
|
|
|
config BR2_PACKAGE_LIBSSH
|
2015-09-28 23:27:24 +02:00
|
|
|
bool "libssh"
|
|
|
|
depends on BR2_USE_MMU # fork()
|
2015-10-01 19:33:05 +02:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2015-10-01 20:30:48 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2015-09-28 23:27:24 +02:00
|
|
|
# Either OpenSSL or libgcrypt are mandatory
|
2016-09-08 23:11:47 +02:00
|
|
|
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_LIBGCRYPT
|
2015-09-28 23:27:24 +02:00
|
|
|
help
|
|
|
|
libssh is a multiplatform C library implementing the SSHv2
|
|
|
|
and SSHv1 protocol on client and server side. With libssh,
|
|
|
|
you can remotely execute programs, transfer files, use a
|
|
|
|
secure and transparent tunnel for your remote applications.
|
2015-08-30 18:05:10 +02:00
|
|
|
|
2015-09-28 23:27:24 +02:00
|
|
|
http://www.libssh.org/
|
2015-10-01 19:33:05 +02:00
|
|
|
|
2015-10-01 20:30:48 +02:00
|
|
|
comment "libssh needs a toolchain w/ dynamic library, threads"
|
2015-10-01 19:33:05 +02:00
|
|
|
depends on BR2_USE_MMU
|
2015-10-01 20:30:48 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|