mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
libupnp: requires threads
Fixes: http://autobuild.buildroot.net/results/ac5a18a6241d36a751cce1867c4da63047eafbaa/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
committed by
Peter Korsgaard
parent
9403f92867
commit
bd08eeaffa
@@ -1,6 +1,7 @@
|
||||
config BR2_PACKAGE_LIBUPNP
|
||||
bool "libupnp"
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
The portable SDK for UPnP(tm) Devices (libupnp) provides developers
|
||||
with an API and open source code for building control points,
|
||||
@@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBUPNP
|
||||
|
||||
http://pupnp.sourceforge.net/
|
||||
|
||||
comment "libupnp requires a toolchain with LARGEFILE support"
|
||||
depends on !BR2_LARGEFILE
|
||||
comment "libupnp requires a toolchain with LARGEFILE and thread support"
|
||||
depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
config BR2_PACKAGE_USHARE
|
||||
bool "ushare"
|
||||
depends on BR2_LARGEFILE
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
|
||||
select BR2_PACKAGE_LIBUPNP
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
help
|
||||
@@ -10,5 +11,5 @@ config BR2_PACKAGE_USHARE
|
||||
|
||||
http://ushare.geexbox.org/
|
||||
|
||||
comment "ushare requires a toolchain with LARGEFILE support"
|
||||
depends on !BR2_LARGEFILE
|
||||
comment "ushare requires a toolchain with LARGEFILE and thread support"
|
||||
depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)
|
||||
|
||||
Reference in New Issue
Block a user