Date: Mon, 15 Jul 2019 21:38:05 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506712 - head/graphics/drm-fbsd12.0-kmod Message-ID: <201907152138.x6FLc5qO062513@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907152138.x6FLc5qO062513>