1config 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 15 https://github.com/sysrepo 16 17if BR2_PACKAGE_SYSREPO 18 19config BR2_PACKAGE_SYSREPO_EXAMPLES 20 bool "enable examples" 21 help 22 Enable sysrepo examples. 23 24endif 25 26comment "sysrepo needs a toolchain w/ C++, NPTL, dynamic library, gcc >= 4.8" 27 depends on BR2_USE_MMU 28 depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP \ 29 || !BR2_TOOLCHAIN_HAS_THREADS_NPTL 30