svn commit: r506712 - head/graphics/drm-fbsd12.0-kmod

Niclas Zeising zeising at FreeBSD.org
Mon Jul 15 21:38:05 UTC 2019


Author: zeising
Date: Mon Jul 15 21:38:05 2019
New Revision: 506712
URL: https://svnweb.freebsd.org/changeset/ports/506712

Log:
  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.
  
  MFH:		2019Q3 (implicit, drm-drivers blanket)
  Sponsored by:	B3 Init

Modified:
  head/graphics/drm-fbsd12.0-kmod/Makefile

Modified: head/graphics/drm-fbsd12.0-kmod/Makefile
==============================================================================
--- head/graphics/drm-fbsd12.0-kmod/Makefile	Mon Jul 15 20:34:42 2019	(r506711)
+++ head/graphics/drm-fbsd12.0-kmod/Makefile	Mon Jul 15 21:38:05 2019	(r506712)
@@ -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-head mailing list