summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Mk/bsd.port.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index e10a758..b14eefb 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1214,7 +1214,10 @@ WITH_PKGNG?= yes
.endif
.endif
-# Enable new xorg for FreeBSD 9.1 and later unless WITHOUT_NEW_XORG is set.
+# Enable new xorg for FreeBSD 9.1 and later unless WITHOUT_NEW_XORG is set on
+# all arches but sparc64. There has been reports of new xorg not working
+# properly on sparc64.
+.if ${ARCH} != "sparc64"
.if ${OSVERSION} >= 901000
.if !defined(WITHOUT_NEW_XORG)
WITH_NEW_XORG?= yes
@@ -1222,6 +1225,7 @@ WITH_NEW_XORG?= yes
.undef WITH_NEW_XORG
.endif
.endif
+.endif
# Only define tools here (for transition period with between pkg tools)
.include "${PORTSDIR}/Mk/bsd.commands.mk"