xref: /OK3568_Linux_fs/buildroot/package/rtorrent/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
17	  https://github.com/rakshasa/rtorrent
18
19comment "rtorrent needs a toolchain w/ C++, threads, wchar, gcc >= 4.9"
20	depends on BR2_USE_MMU
21	depends on BR2_TOOLCHAIN_HAS_SYNC_1 && BR2_TOOLCHAIN_HAS_SYNC_4
22	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR && \
23		BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_GCC_AT_LEAST_4_9)
24