Date: Wed, 5 Feb 2014 17:46:08 +0000 (UTC) From: Koop Mast <kwm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342802 - head/x11-drivers/xf86-video-ati Message-ID: <201402051746.s15Hk8BY060743@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402051746.s15Hk8BY060743>