summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzeising <zeising@058c260c-8361-11dd-a0ac-aa2bafec7d09>2013-06-21 03:51:40 +0800
committerzeising <zeising@058c260c-8361-11dd-a0ac-aa2bafec7d09>2013-06-21 03:51:40 +0800
commitdf8a7033295ad0c3d74e7de7164c16c055f14908 (patch)
treee2f049b74412d2322834da997f17605aa019aa6a
parent9cd74f320ae59dec8987786be28472ef377205d5 (diff)
downloadxorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar.gz
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar.bz2
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar.lz
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar.xz
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.tar.zst
xorg-devel-ports-df8a7033295ad0c3d74e7de7164c16c055f14908.zip
Disable new xorg on sparc64, it doesn't work.
Noted by: marius git-svn-id: https://trillian.chruetertee.ch/svn/ports/trunk@968 058c260c-8361-11dd-a0ac-aa2bafec7d09
-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"