Config.in 666 B

123456789101112131415161718
  1. config BR2_PACKAGE_LIBNPUPNP
  2. bool "libnpupnp"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  6. select BR2_PACKAGE_EXPAT
  7. select BR2_PACKAGE_LIBCURL
  8. select BR2_PACKAGE_LIBMICROHTTPD
  9. help
  10. npupnp (new pupnp or not pupnp ?) is an UPnP library derived
  11. from the venerable pupnp (https://github.com/pupnp/pupnp),
  12. based on its 1.6.x branch (around 1.6.25).
  13. https://www.lesbonscomptes.com/upmpdcli/libnpupnp.html
  14. comment "libnpupnp needs a toolchain w/ C++, threads, gcc >= 4.9"
  15. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
  16. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9