Config.in 815 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_RTORRENT
  2. bool "rtorrent"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_USE_MMU # fork()
  7. # gcc < 4.9 cause an "internal compiler error"
  8. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  9. depends on BR2_TOOLCHAIN_HAS_SYNC_1 && BR2_TOOLCHAIN_HAS_SYNC_4
  10. select BR2_PACKAGE_LIBCURL
  11. select BR2_PACKAGE_LIBTORRENT
  12. select BR2_PACKAGE_NCURSES
  13. select BR2_PACKAGE_OPENSSL
  14. help
  15. BitTorrent Client using libtorrent
  16. https://github.com/rakshasa/rtorrent
  17. comment "rtorrent needs a toolchain w/ C++, threads, wchar, gcc >= 4.9"
  18. depends on BR2_USE_MMU
  19. depends on BR2_TOOLCHAIN_HAS_SYNC_1 && BR2_TOOLCHAIN_HAS_SYNC_4
  20. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
  21. BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_9)