svn commit: r342802 - head/x11-drivers/xf86-video-ati

Koop Mast kwm at FreeBSD.org
Wed Feb 5 17:46:09 UTC 2014


Author: kwm
Date: Wed Feb  5 17:46:08 2014
New Revision: 342802
URL: http://svnweb.freebsd.org/changeset/ports/342802
QAT: https://qat.redports.org/buildarchive/r342802/

Log:
  Only use the KMS driver on i386/amd64. This allows the old version to
  be used on powerpc for example even if WITH_NEW_XORG is set.
  
  Submitted by:	nwhitehorn@

Modified:
  head/x11-drivers/xf86-video-ati/Makefile

Modified: head/x11-drivers/xf86-video-ati/Makefile
==============================================================================
--- head/x11-drivers/xf86-video-ati/Makefile	Wed Feb  5 17:41:39 2014	(r342801)
+++ head/x11-drivers/xf86-video-ati/Makefile	Wed Feb  5 17:46:08 2014	(r342802)
@@ -14,7 +14,8 @@ USE_XORG=	xf86driproto xineramaproto xf8
 
 .include <bsd.port.options.mk>
 
-.if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG)
+.if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG) || \
+	(${ARCH} != i386 && ${ARCH} != amd64)
 ATI_VERSION=	6.14.6
 ATI_REVISION=	1
 CONFIGURE_ARGS+=--disable-kms


More information about the svn-ports-all mailing list