diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-01-20 16:26:01 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-01-21 13:55:07 +0100 |
commit | 9daafbcb75a7ab593ce8a1f21c6149c8437bc0bc (patch) | |
tree | 76be1771cbc4ba37c321046aa2fbe1ac99b448ea | |
parent | 86ee03421f46e7f62420ed152b3bc17406e3b97c (diff) | |
download | buildroot-9daafbcb75a7ab593ce8a1f21c6149c8437bc0bc.tar.gz buildroot-9daafbcb75a7ab593ce8a1f21c6149c8437bc0bc.zip |
xorg-server: not available with musl on ARM
Fixes #9606
xserver uses inb/outb on arm, which aren't available with musl.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/x11r7/xserver_xorg-server/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/x11r7/xserver_xorg-server/Config.in b/package/x11r7/xserver_xorg-server/Config.in index 0f1d1fecc1..1c8f8cfdbf 100644 --- a/package/x11r7/xserver_xorg-server/Config.in +++ b/package/x11r7/xserver_xorg-server/Config.in @@ -1,6 +1,11 @@ +comment "xorg-server needs a glibc or uClibc toolchain" + depends on BR2_arm && BR2_TOOLCHAIN_USES_MUSL + config BR2_PACKAGE_XSERVER_XORG_SERVER bool "xorg-server" depends on BR2_USE_MMU # fork() + # xserver uses inb/outb on arm, which aren't available with musl + depends on !(BR2_arm && BR2_TOOLCHAIN_USES_MUSL) # We need a SHA1 implementation. If either openssl or # libgcrypt are already part of the build, we'll use one of # them, otherwise, use the small libsha1 library. |