diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-08-26 06:25:27 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-08-26 06:25:27 +0000 |
commit | a6f897856d16d64d13f96eb5ca7e9145b5fdf2e8 (patch) | |
tree | f61c8c7953907dbf36c726724627ad4d0534d804 | |
parent | 421c28c2874b2f084824f2486ec2da0e1a7ac986 (diff) |
stop building Mesa on alpha hppa and landisk
a C++11 compiler is required and these archs don't have clang
ok deraadt@
-rw-r--r-- | share/mk/bsd.xconf.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.xconf.mk b/share/mk/bsd.xconf.mk index 208f1abcc..276cc1b29 100644 --- a/share/mk/bsd.xconf.mk +++ b/share/mk/bsd.xconf.mk @@ -1,7 +1,8 @@ -# $OpenBSD: bsd.xconf.mk,v 1.35 2018/06/28 20:11:32 kettenis Exp $ +# $OpenBSD: bsd.xconf.mk,v 1.36 2020/08/26 06:25:26 jsg Exp $ # Build GL libs and apps? -.if ${MACHINE_ARCH} == "m88k" +.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "hppa" || \ + ${MACHINE_ARCH} == "m88k" || ${MACHINE_ARCH} == "sh" XENOCARA_BUILD_GL?=no XENOCARA_BUILD_DRI?=no .else |