Module Name: src
Committed By: martin
Date: Wed Apr 24 20:38:24 UTC 2024
Modified Files:
src/share/mk: bsd.own.mk
Log Message:
Explicitly exclude VAX from new Mesa due to a gcc internal compiler error
To generate a diff of this commit:
cvs rdiff -u -r1.1371 -r1.1372 src/share/mk/bsd.own.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.1371 src/share/mk/bsd.own.mk:1.1372
--- src/share/mk/bsd.own.mk:1.1371 Wed Apr 24 19:14:39 2024
+++ src/share/mk/bsd.own.mk Wed Apr 24 20:38:24 2024
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.1371 2024/04/24 19:14:39 martin Exp $
+# $NetBSD: bsd.own.mk,v 1.1372 2024/04/24 20:38:24 martin Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -1331,7 +1331,8 @@ HAVE_XORG_SERVER_VER?=120
.endif
# Newer Mesa does not build with old X server
-.if ${HAVE_XORG_SERVER_VER} != "120"
+# VAX build triggers a gcc internal error
+.if ${HAVE_XORG_SERVER_VER} != "120" || ${MACHINE} == "vax"
HAVE_MESA_VER=19
.endif