summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2015-11-25 09:24:00 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2015-11-25 09:24:00 +0000
commit43972a324d0302a7f39c17f9d6ea8dbcd56d41a4 (patch)
treea99c3565d5925471f8ea0d839045e1e8f86771b7 /share
parentcfdb91cd85a286630458327358142a1160a9053e (diff)
Stop building Mesa on alpha for now as it hits a gcc ICE, and mips64 because
it requires sync builtins not in gcc 4.2 and hits binutils issues. ok matthieu@ deraadt@
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.xconf.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.xconf.mk b/share/mk/bsd.xconf.mk
index 30e375532..5c18e3751 100644
--- a/share/mk/bsd.xconf.mk
+++ b/share/mk/bsd.xconf.mk
@@ -1,4 +1,4 @@
-# $OpenBSD: bsd.xconf.mk,v 1.28 2013/09/24 21:03:32 miod Exp $
+# $OpenBSD: bsd.xconf.mk,v 1.29 2015/11/25 09:23:59 jsg Exp $
# Shared libs?
.if ${MACHINE} == "vax"
@@ -8,7 +8,8 @@ XENOCARA_HAVE_SHARED_LIBS?=yes
.endif
# Build GL libs and apps?
-.if ${MACHINE} == "octeon" || ${MACHINE_ARCH} == "m88k"
+.if ${MACHINE_CPU} == "mips64" || ${MACHINE_ARCH} == "m88k" || \
+ ${MACHINE_ARCH} == "alpha"
XENOCARA_BUILD_GL?=no
XENOCARA_BUILD_DRI?=no
.else