libcap-ng: disable on avr32 which lacks TLS
authorSamuel Martin <s.martin49@gmail.com>
Fri, 22 Nov 2013 09:26:47 +0000 (10:26 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 22 Nov 2013 12:07:18 +0000 (13:07 +0100)
libcap-ng needs TLS support, which is not available on avr32.
Also, disable reverse dependencies.

Fixes:
  http://autobuild.buildroot.net/results/73c/73c7c211a51c312bbe4eb6a540f3ad9c92c79ebe/

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/libcap-ng/Config.in
package/ofono/Config.in

index d1663cdefc20f58edbe96c992f441bb7106c5f9a..da5b447726f27524ebc749b6f8f98e14e4bfc4c5 100644 (file)
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBCAP_NG
        bool "libcap-ng"
+       depends on !BR2_avr32 # lacks TLS
        help
          The libcap-ng library is intended to make programming with
          posix capabilities much easier than the traditional libcap
index b26b5e76a0345673bed0574690fadfe89491eb89..00df25186e967df81b77afd859f868dd8d4af956 100644 (file)
@@ -3,6 +3,7 @@ config BR2_PACKAGE_OFONO
        depends on BR2_USE_WCHAR # gettext, libglib2
        depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
        depends on BR2_USE_MMU # dbus, libglib2
+       depends on !BR2_avr32 # libcap-ng
        select BR2_PACKAGE_LIBCAP_NG
        select BR2_PACKAGE_DBUS
        select BR2_PACKAGE_LIBGLIB2
@@ -15,5 +16,6 @@ config BR2_PACKAGE_OFONO
          http://ofono.org/
 
 comment "ofono needs a toolchain w/ wchar, threads"
+       depends on !BR2_avr32
        depends on BR2_USE_MMU
        depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS