diff mbox series

[vX,1/1] package/libyang: fix build w/o threads

Message ID 20191024063716.6562-1-heiko.thiery@gmail.com
State Accepted
Headers show
Series [vX,1/1] package/libyang: fix build w/o threads | expand

Commit Message

Heiko Thiery Oct. 24, 2019, 6:37 a.m. UTC
From: Heiko Thiery <heiko.thiery@kontron.com>

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>
---
 package/libyang/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Comments

Thomas Petazzoni Oct. 25, 2019, 6:19 p.m. UTC | #1
On Thu, 24 Oct 2019 08:37:16 +0200
heiko.thiery@gmail.com wrote:

> From: Heiko Thiery <heiko.thiery@kontron.com>
> 
> 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>
> ---
>  package/libyang/Config.in | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/libyang/Config.in b/package/libyang/Config.in
index ebe51ff099..fec1160a6f 100644
--- a/package/libyang/Config.in
+++ b/package/libyang/Config.in
@@ -1,5 +1,6 @@ 
 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
@@ -9,5 +10,5 @@  config BR2_PACKAGE_LIBYANG
 
 	  https://github.com/CESNET/libyang
 
-comment "libyang needs a toolchain w/ dynamic library"
-	depends on BR2_STATIC_LIBS
+comment "libyang needs a toolchain w/ threads, dynamic library"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS