Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jul 2019 21:39:40 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r506713 - branches/2019Q3/graphics/drm-fbsd12.0-kmod
Message-ID:  <201907152139.x6FLdeSe062791@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907152139.x6FLdeSe062791>