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