diff mbox

package/libiio: libiio network backend needs threads

Message ID 1467457635-31517-1-git-send-email-romain.naour@smile.fr
State Accepted
Commit f7b3b97d509994bf3e2110f548dd593c204ba02a
Headers show

Commit Message

Romain Naour July 2, 2016, 11:07 a.m. UTC
When libiio network backend is enabled, NEED_THREADS is set in the
build system and require a toolchain with treads support.

Fixes:
http://autobuild.buildroot.net/results/cfc/cfc70094d8f4008f4e660250b1b90a35a2ab384d

Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
 package/libiio/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Peter Korsgaard July 2, 2016, 1:30 p.m. UTC | #1
>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 > When libiio network backend is enabled, NEED_THREADS is set in the
 > build system and require a toolchain with treads support.

 > Fixes:
 > http://autobuild.buildroot.net/results/cfc/cfc70094d8f4008f4e660250b1b90a35a2ab384d

 > Signed-off-by: Romain Naour <romain.naour@smile.fr>
 > ---
 >  package/libiio/Config.in | 4 ++++
 >  1 file changed, 4 insertions(+)

 > diff --git a/package/libiio/Config.in b/package/libiio/Config.in
 > index 99da4c1..28a43f9 100644
 > --- a/package/libiio/Config.in
 > +++ b/package/libiio/Config.in
 > @@ -17,11 +17,15 @@ config BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
 
 >  config BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
 >  	bool "Network backend"
 > +	depends on BR2_TOOLCHAIN_HAS_THREADS
 >  	select BR2_PACKAGE_LIBXML2
 >  	default y
 >  	help
 >  	  Enable the network backend of the library.
 
 > +comment "IIO Network backend needs a toolchain w/ threads"
 > +	depends on !BR2_TOOLCHAIN_HAS_THREADS
 > +

Committed, thanks.
diff mbox

Patch

diff --git a/package/libiio/Config.in b/package/libiio/Config.in
index 99da4c1..28a43f9 100644
--- a/package/libiio/Config.in
+++ b/package/libiio/Config.in
@@ -17,11 +17,15 @@  config BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
 
 config BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
 	bool "Network backend"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	select BR2_PACKAGE_LIBXML2
 	default y
 	help
 	  Enable the network backend of the library.
 
+comment "IIO Network backend needs a toolchain w/ threads"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
+
 config BR2_PACKAGE_LIBIIO_IIOD
 	bool "IIO Daemon"
 	select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND