1*4882a593Smuzhiyunconfig BR2_PACKAGE_I2PD 2*4882a593Smuzhiyun bool "i2pd" 3*4882a593Smuzhiyun depends on BR2_USE_MMU # fork() 4*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_ATOMIC 5*4882a593Smuzhiyun # pthread_condattr_setclock 6*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL 7*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-filesystem 8*4882a593Smuzhiyun depends on BR2_INSTALL_LIBSTDCPP 9*4882a593Smuzhiyun depends on BR2_USE_WCHAR # boost 10*4882a593Smuzhiyun depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr 11*4882a593Smuzhiyun select BR2_PACKAGE_BOOST 12*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_DATE_TIME 13*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_FILESYSTEM 14*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS 15*4882a593Smuzhiyun select BR2_PACKAGE_BOOST_SYSTEM 16*4882a593Smuzhiyun select BR2_PACKAGE_OPENSSL 17*4882a593Smuzhiyun select BR2_PACKAGE_ZLIB 18*4882a593Smuzhiyun help 19*4882a593Smuzhiyun i2pd (I2P Daemon) is a full-featured C++ implementation of I2P 20*4882a593Smuzhiyun client. 21*4882a593Smuzhiyun 22*4882a593Smuzhiyun I2P (Invisible Internet Protocol) is a universal anonymous 23*4882a593Smuzhiyun network layer. 24*4882a593Smuzhiyun All communications over I2P are anonymous and end-to-end 25*4882a593Smuzhiyun encrypted, participants don't reveal their real IP addresses. 26*4882a593Smuzhiyun 27*4882a593Smuzhiyun http://i2pd.website 28*4882a593Smuzhiyun 29*4882a593Smuzhiyuncomment "i2pd needs a toolchain w/ C++, NPTL, wchar" 30*4882a593Smuzhiyun depends on BR2_USE_MMU 31*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_ATOMIC 32*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS 33*4882a593Smuzhiyun depends on !BR2_INSTALL_LIBSTDCPP || \ 34*4882a593Smuzhiyun !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR 35*4882a593Smuzhiyun 36*4882a593Smuzhiyuncomment "i2pd needs exception_ptr" 37*4882a593Smuzhiyun depends on BR2_USE_MMU 38*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_ATOMIC 39*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS 40*4882a593Smuzhiyun depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735 41