svn commit: r506713 - branches/2019Q3/graphics/drm-fbsd12.0-kmod
Niclas Zeising
zeising at FreeBSD.org
Mon Jul 15 21:39:41 UTC 2019
Author: zeising
Date: Mon Jul 15 21:39:40 2019
New Revision: 506713
URL: https://svnweb.freebsd.org/changeset/ports/506713
Log:
MFH: r506712
graphics/drm-fbsd12.0-kmod: Mark only for 12
Change the version check in graphics/drm-fbsd12.0-kmod to make it only
compile on FreeBSD 12, not 13 and later, since it fails to build on 12.0.
graphics/drm-current-kmod is the same driver versions, but with some
differences due to differences in 12 and current.
Sponsored by: B3 Init
Approved by: portmgr (implicit, drm-drivers blanket)
Modified:
branches/2019Q3/graphics/drm-fbsd12.0-kmod/Makefile
Directory Properties:
branches/2019Q3/ (props changed)
Modified: branches/2019Q3/graphics/drm-fbsd12.0-kmod/Makefile
==============================================================================
--- branches/2019Q3/graphics/drm-fbsd12.0-kmod/Makefile Mon Jul 15 21:38:05 2019 (r506712)
+++ branches/2019Q3/graphics/drm-fbsd12.0-kmod/Makefile Mon Jul 15 21:39:40 2019 (r506713)
@@ -32,8 +32,8 @@ GH_TAGNAME= 6365030
.include <bsd.port.options.mk>
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200058
-IGNORE= only supported on FreeBSD 12.0 and later
+.if ${OPSYS} == FreeBSD && (${OSVERSION} < 1200058 || ${OSVERSION} > 1300000)
+IGNORE= only supported on FreeBSD 12.
.endif
.if ${OPSYS} != FreeBSD
IGNORE= not supported on anything but FreeBSD (missing linuxkpi functionality)
More information about the svn-ports-all
mailing list