svn commit: r466923 - head/graphics/mesa-dri

Jan Beich jbeich at FreeBSD.org
Tue Apr 10 00:14:03 UTC 2018


Author: jbeich
Date: Tue Apr 10 00:14:03 2018
New Revision: 466923
URL: https://svnweb.freebsd.org/changeset/ports/466923

Log:
  graphics/mesa-dri: always lower kernel version check
  
  Sandybridge on FreeBSD 11.* is also affected:
  
  $ glxgears
  [intel_init_bufmgr: 1685] Kernel 3.9 required.
  libGL error: failed to create dri screen
  libGL error: failed to load driver: i965
  5373 frames in 5.0 seconds = 1074.496 FPS
  
  Reported by:	Kevin Oberman
  PR:		225035 225415

Modified:
  head/graphics/mesa-dri/Makefile   (contents, props changed)

Modified: head/graphics/mesa-dri/Makefile
==============================================================================
--- head/graphics/mesa-dri/Makefile	Tue Apr 10 00:13:43 2018	(r466922)
+++ head/graphics/mesa-dri/Makefile	Tue Apr 10 00:14:03 2018	(r466923)
@@ -3,7 +3,7 @@
 
 PORTNAME=	mesa-dri
 PORTVERSION=	${MESAVERSION}
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics
 
 COMMENT=	OpenGL hardware acceleration drivers for DRI2+
@@ -52,7 +52,7 @@ VULKAN_DRIVERS+=	RADEON
 .if ${ARCH} == amd64 || ${ARCH} == i386
 DRI_DRIVERS+=		I915 I965
 GALLIUM_DRIVERS+=	SVGA
-. if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
+. if ${OPSYS} == FreeBSD
 EXTRA_PATCHES+=	${PATCHDIR}/extra-src_mesa_drivers_dri_i965_intel__screen.c
 . endif
 VULKAN_DRIVERS+=	INTEL


More information about the svn-ports-head mailing list