summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2009-09-10 19:28:24 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2009-09-10 19:28:24 +0000
commit6b735ee5bf7393a8212e19cb8cb1283ce09eb91b (patch)
treef9de36dabcb1e2927005ef63da13c4b7025ccc24 /Makefile
parent2d8c03bb770d34ff1e96ec6fac83ca2b2787b9cb (diff)
Completely disable xserver on vax, it generates a gcc segmentation
violation in xkb/xkbEvents.c. ok todd@
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ad07b66a8..7e501cda3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.29 2009/05/20 18:26:32 miod Exp $
+# $OpenBSD: Makefile,v 1.30 2009/09/10 19:28:23 matthieu Exp $
.include <bsd.own.mk>
LOCALAPPD=/usr/local/lib/X11/app-defaults
@@ -7,7 +7,7 @@ REALAPPD=/etc/X11/app-defaults
XCONFIG=${XSRCDIR}/etc/X11.${MACHINE}/xorg.conf
RM?=rm
-.if ${MACHINE_ARCH} != "sh"
+.if ${MACHINE_ARCH} != "sh" && ${MACHINE_ARCH} != "vax"
XSERVER= xserver
.endif