Config.in 772 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_SYSREPO
  2. bool "sysrepo"
  3. depends on BR2_USE_MMU
  4. depends on !BR2_STATIC_LIBS
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  8. select BR2_PACKAGE_LIBYANG
  9. select BR2_PACKAGE_PCRE
  10. select BR2_PACKAGE_PCRE_UCP
  11. help
  12. Sysrepo is an YANG-based configuration and operational state
  13. data store for Unix/Linux applications.
  14. https://github.com/sysrepo
  15. if BR2_PACKAGE_SYSREPO
  16. config BR2_PACKAGE_SYSREPO_EXAMPLES
  17. bool "enable examples"
  18. help
  19. Enable sysrepo examples.
  20. endif
  21. comment "sysrepo needs a toolchain w/ C++, NPTL, dynamic library, gcc >= 4.8"
  22. depends on BR2_USE_MMU
  23. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  24. || !BR2_TOOLCHAIN_HAS_THREADS_NPTL