Config.in 828 B

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_SYSREPO
  2. bool "sysrepo"
  3. depends on BR2_USE_MMU
  4. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libyang
  5. depends on !BR2_STATIC_LIBS
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
  8. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  9. select BR2_PACKAGE_LIBYANG
  10. select BR2_PACKAGE_PCRE2
  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_TOOLCHAIN_HAS_SYNC_4
  24. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \
  25. || !BR2_TOOLCHAIN_HAS_THREADS_NPTL