diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-08-04 07:19:54 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-08-04 18:26:27 +0200 |
commit | 9c37eaabd6d62ae02ff5e5a8b15135e3b62f71ce (patch) | |
tree | 042724339418abb30c6947b8b765d82a7d157bc6 /package/bluez5_utils | |
parent | a970021831c9f710fb45c633ca14902e98f75294 (diff) | |
download | buildroot-9c37eaabd6d62ae02ff5e5a8b15135e3b62f71ce.tar.gz buildroot-9c37eaabd6d62ae02ff5e5a8b15135e3b62f71ce.zip |
bluez5_utils: needs ipv6
Fixes:
http://autobuild.buildroot.net/results/bd2/bd262b626358563110609dde411e96dc980ebf6a/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bluez5_utils')
-rw-r--r-- | package/bluez5_utils/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in index 62bac5d680..9152093903 100644 --- a/package/bluez5_utils/Config.in +++ b/package/bluez5_utils/Config.in @@ -4,6 +4,7 @@ config BR2_PACKAGE_BLUEZ5_UTILS depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2 depends on BR2_USE_MMU # dbus + depends on BR2_INET_IPV6 depends on !BR2_PACKAGE_BLUEZ_UTILS # conflicts with 4.x version depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 select BR2_PACKAGE_DBUS @@ -60,8 +61,9 @@ config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL endif -comment "bluez5-utils needs a toolchain w/ wchar, threads, headers >= 3.4" - depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 +comment "bluez5-utils needs a toolchain w/ wchar, threads, IPv6, headers >= 3.4" + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 comment "bluez5-utils conflicts with older bluez-utils version" depends on BR2_PACKAGE_BLUEZ_UTILS |