Config.in 1.1 KB

123456789101112131415161718192021222324252627
  1. comment "libtorrent-rasterbar needs a toolchain w/ C++, threads, wchar, gcc >= 4.9"
  2. depends on BR2_TOOLCHAIN_SUPPORTS_VARIADIC_MI_THUNK
  3. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
  4. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
  5. !BR2_HOST_GCC_AT_LEAST_4_9 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  6. comment "libtorrent-rasterbar needs exception_ptr"
  7. depends on BR2_TOOLCHAIN_SUPPORTS_VARIADIC_MI_THUNK
  8. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
  9. config BR2_PACKAGE_LIBTORRENT_RASTERBAR
  10. bool "libtorrent-rasterbar"
  11. depends on BR2_INSTALL_LIBSTDCPP # boost
  12. depends on BR2_HOST_GCC_AT_LEAST_4_9 # C++11
  13. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  14. depends on BR2_TOOLCHAIN_HAS_THREADS # boost
  15. depends on BR2_TOOLCHAIN_SUPPORTS_VARIADIC_MI_THUNK
  16. depends on BR2_USE_WCHAR # boost
  17. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
  18. select BR2_PACKAGE_BOOST
  19. select BR2_PACKAGE_BOOST_SYSTEM
  20. select BR2_PACKAGE_OPENSSL
  21. help
  22. libtorrent is a feature complete C++ bittorrent implementation
  23. focusing on efficiency and scalability.
  24. https://www.libtorrent.org/