1config BR2_PACKAGE_LIBUPNPP 2 bool "libupnpp" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libnpupnp 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 6 select BR2_PACKAGE_EXPAT 7 select BR2_PACKAGE_LIBCURL 8 select BR2_PACKAGE_LIBNPUPNP 9 help 10 The libupnpp C++ library wraps libupnp for easier use by 11 upmpdcli and upplay. 12 13 http://www.lesbonscomptes.com/upmpdcli/ 14 15comment "libupnpp needs a toolchain w/ C++, threads, gcc >= 4.9" 16 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 17