1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

Rework checks to select between UMS and KMS versions of the ati driver.

Developed with:	dumbbell@
Obtained from:	xorg-dev repo
This commit is contained in:
Koop Mast 2014-09-10 10:42:46 +00:00
parent 8852cc1260
commit 770a1c064b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=367808

View File

@ -14,8 +14,31 @@ USE_XORG= xf86driproto xineramaproto xf86miscproto glproto
.include <bsd.port.options.mk>
.if ${OSVERSION} < 1000051 || !defined(WITH_NEW_XORG) || \
(${ARCH} != i386 && ${ARCH} != amd64)
.if (${OSVERSION} >= 902508 && ${OSVERSION} < 1000000) || ${OSVERSION} >= 1000051
# 902508: Radeon kernel driver imported in FreeBSD 9.x
# 1000051: Radeon kernel driver imported in FreeBSD 10.x
. if defined(WITH_NEW_XORG)
NEW_ATI_DRIVER= yes
. else
NEW_ATI_DRIVER= no
. endif
.else
# FreeBSD < 902508 doesn't have the Radeon kernel driver. No need to
# check for WITH_NEW_XORG. But we do support a flag to force the usage
# of the KMS-only DDX: this is used by the build cluster only.
. if defined(FORCE_KMS_ONLY_DDX)
NEW_ATI_DRIVER= yes
. else
NEW_ATI_DRIVER= no
. endif
.endif
.if (${ARCH} != i386 && ${ARCH} != amd64)
# No Radeon kernel driver on non-x86 and PC98.
NEW_ATI_DRIVER= no
.endif
.if ${NEW_ATI_DRIVER} == no
ATI_VERSION= 6.14.6
ATI_REVISION= 3
CONFIGURE_ARGS+=--disable-kms