Config.in 666 B

123456789101112131415161718
  1. config BR2_PACKAGE_LIBSSH
  2. bool "libssh"
  3. depends on BR2_USE_MMU # fork()
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. # Either OpenSSL or libgcrypt are mandatory
  7. select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_LIBGCRYPT
  8. help
  9. libssh is a multiplatform C library implementing the SSHv2
  10. and SSHv1 protocol on client and server side. With libssh,
  11. you can remotely execute programs, transfer files, use a
  12. secure and transparent tunnel for your remote applications.
  13. http://www.libssh.org/
  14. comment "libssh needs a toolchain w/ dynamic library, threads"
  15. depends on BR2_USE_MMU
  16. depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS