diff options
author | 2013-11-16 09:58:13 +0000 | |
---|---|---|
committer | 2013-11-17 00:54:44 +0100 | |
commit | 1b5bd7a29694881cf85c653e2307d7b8464a15c9 (patch) | |
tree | a278bd551800aa537c4f3573bcab9ec95cb82659 /package/wayland/Config.in | |
parent | 93adbf9c00671cb5983cfa7b11b04d2d72ab344b (diff) | |
download | buildroot-1b5bd7a29694881cf85c653e2307d7b8464a15c9.tar.gz buildroot-1b5bd7a29694881cf85c653e2307d7b8464a15c9.tar.bz2 |
wayland: disable on avr32
The epoll_create1, timerfd_create and timerfd_settime syscalls are not available
on avr32. Fixes build failures such as the following.
http://autobuild.buildroot.net/results/43b/43b3df5978782034279604abde8fe5d46c441344/
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/wayland/Config.in')
-rw-r--r-- | package/wayland/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/wayland/Config.in b/package/wayland/Config.in index 260832fe79..c92f9ea1fc 100644 --- a/package/wayland/Config.in +++ b/package/wayland/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_WAYLAND bool "wayland" + depends on !BR2_avr32 # no epoll_create1, timerfd_create or timerfd_settime depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBFFI select BR2_PACKAGE_EXPAT @@ -11,4 +12,5 @@ config BR2_PACKAGE_WAYLAND http://wayland.freedesktop.org/ comment "wayland needs a toolchain w/ threads" + depends on !BR2_avr32 depends on !BR2_TOOLCHAIN_HAS_THREADS |