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