1comment "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 || \ 5 !BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 6 7comment "libtorrent-rasterbar needs exception_ptr" 8 depends on BR2_TOOLCHAIN_SUPPORTS_VARIADIC_MI_THUNK 9 depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 10 11config BR2_PACKAGE_LIBTORRENT_RASTERBAR 12 bool "libtorrent-rasterbar" 13 depends on BR2_INSTALL_LIBSTDCPP # boost 14 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11 15 depends on BR2_TOOLCHAIN_HAS_THREADS # boost 16 depends on BR2_TOOLCHAIN_SUPPORTS_VARIADIC_MI_THUNK 17 depends on BR2_USE_WCHAR # boost 18 depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr 19 select BR2_PACKAGE_BOOST 20 select BR2_PACKAGE_BOOST_SYSTEM 21 select BR2_PACKAGE_OPENSSL 22 help 23 libtorrent is a feature complete C++ bittorrent implementation 24 focusing on efficiency and scalability. 25 26 https://www.libtorrent.org/ 27