diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-04-22 19:13:58 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-23 09:48:45 +0200 |
commit | f593c61dce04b1cac5e56d00afb86c3eb8f89110 (patch) | |
tree | 960d50c27df75a3597cbb81a8eca5a2a3e63c845 | |
parent | 757e9c4c2a9181514f658f54f0757d1c2d479fff (diff) | |
download | buildroot-f593c61dce04b1cac5e56d00afb86c3eb8f89110.tar.gz buildroot-f593c61dce04b1cac5e56d00afb86c3eb8f89110.zip |
mosquitto: remove ipv6 depends
The package was added after the last iteration of the non-ipv6
toolchain removal, so adjust it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/mosquitto/Config.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/mosquitto/Config.in b/package/mosquitto/Config.in index 8f579f87ed..50937d0554 100644 --- a/package/mosquitto/Config.in +++ b/package/mosquitto/Config.in @@ -1,7 +1,6 @@ config BR2_PACKAGE_MOSQUITTO bool "mosquitto" depends on BR2_USE_MMU # fork() - depends on BR2_INET_IPV6 depends on !BR2_STATIC_LIBS # builds .so help Mosquitto is an open source message broker that implements @@ -14,6 +13,6 @@ config BR2_PACKAGE_MOSQUITTO http://mosquitto.org/ -comment "mosquitto needs a toolchain w/ IPv6, dynamic library" +comment "mosquitto needs a toolchain w/ dynamic library" depends on BR2_USE_MMU - depends on !BR2_INET_IPV6 || BR2_STATIC_LIBS + depends on BR2_STATIC_LIBS |