* [Buildroot] [PATCH] xorg-server: not available with musl on ARM
@ 2017-01-20 15:26 Peter Korsgaard
2017-01-21 12:57 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2017-01-20 15:26 UTC (permalink / raw)
To: buildroot
Fixes #9606
xserver uses inb/outb on arm, which aren't available with musl.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/x11r7/xserver_xorg-server/Config.in | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/package/x11r7/xserver_xorg-server/Config.in b/package/x11r7/xserver_xorg-server/Config.in
index 0f1d1fecc..1c8f8cfdb 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.
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] xorg-server: not available with musl on ARM
2017-01-20 15:26 [Buildroot] [PATCH] xorg-server: not available with musl on ARM Peter Korsgaard
@ 2017-01-21 12:57 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2017-01-21 12:57 UTC (permalink / raw)
To: buildroot
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Fixes #9606
> xserver uses inb/outb on arm, which aren't available with musl.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-01-21 12:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-20 15:26 [Buildroot] [PATCH] xorg-server: not available with musl on ARM Peter Korsgaard
2017-01-21 12:57 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox