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:
Gustavo Zacarias 2013-02-27 00:27:04 +00:00 committed by Peter Korsgaard
parent 9403f92867
commit bd08eeaffa
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,7 @@
config BR2_PACKAGE_LIBUPNP config BR2_PACKAGE_LIBUPNP
bool "libupnp" bool "libupnp"
depends on BR2_LARGEFILE depends on BR2_LARGEFILE
depends on BR2_TOOLCHAIN_HAS_THREADS
help help
The portable SDK for UPnP(tm) Devices (libupnp) provides developers The portable SDK for UPnP(tm) Devices (libupnp) provides developers
with an API and open source code for building control points, with an API and open source code for building control points,
@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBUPNP
http://pupnp.sourceforge.net/ http://pupnp.sourceforge.net/
comment "libupnp requires a toolchain with LARGEFILE support" comment "libupnp requires a toolchain with LARGEFILE and thread support"
depends on !BR2_LARGEFILE depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)

View File

@ -1,6 +1,7 @@
config BR2_PACKAGE_USHARE config BR2_PACKAGE_USHARE
bool "ushare" bool "ushare"
depends on BR2_LARGEFILE depends on BR2_LARGEFILE
depends on BR2_TOOLCHAIN_HAS_THREADS # libupnp
select BR2_PACKAGE_LIBUPNP select BR2_PACKAGE_LIBUPNP
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
help help
@ -10,5 +11,5 @@ config BR2_PACKAGE_USHARE
http://ushare.geexbox.org/ http://ushare.geexbox.org/
comment "ushare requires a toolchain with LARGEFILE support" comment "ushare requires a toolchain with LARGEFILE and thread support"
depends on !BR2_LARGEFILE depends on !(BR2_LARGEFILE && BR2_TOOLCHAIN_HAS_THREADS)