buildroot/package/libyang/Config.in
Heiko Thiery 68f3e7c3b1 package/libyang: fix build w/o threads
For building libyang a toolchain with thread support is needed. Add the dependancy
to BR2_TOOLCHAIN_HAS_THREADS.

Fixes:
  - http://autobuild.buildroot.net/results/1d84ff4aab67a98113d967b65467109e80bb5917

Signed-off-by: Heiko Thiery <heiko.thiery@kontron.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-10-25 20:16:49 +02:00

15 lines
429 B
Plaintext

config BR2_PACKAGE_LIBYANG
bool "libyang"
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_PCRE
select BR2_PACKAGE_PCRE_UCP
help
Libyang is YANG data modeling language parser and toolkit
written (and providing API) in C.
https://github.com/CESNET/libyang
comment "libyang needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS