Date: Fri, 4 Oct 2019 20:09:12 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r513777 - in branches/2019Q4: graphics/libosmesa graphics/mesa-dri graphics/mesa-dri/files lang/clover Message-ID: <201910042009.x94K9CY8003681@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Fri Oct 4 20:09:12 2019 New Revision: 513777 URL: https://svnweb.freebsd.org/changeset/ports/513777 Log: MFH: r513776 graphics/mesa-dri: revert r512573 and limit to llvm80 after r512440 Mesa 18.3 doesn't support LLVM 9. While some fixes were backported there're probably more issues. Apparently, Gnome shows black screen. As the port is unlikely to be ready for future LLVM_DEFAULT bumps without a version update just limit to previously tested value. PR: 239682 Requested by: imp Approved by: ports-secteam blanket Deleted: branches/2019Q4/graphics/mesa-dri/files/patch-0a7e767 branches/2019Q4/graphics/mesa-dri/files/patch-39d0c68 branches/2019Q4/graphics/mesa-dri/files/patch-3e249b8 branches/2019Q4/graphics/mesa-dri/files/patch-648dc52 branches/2019Q4/graphics/mesa-dri/files/patch-b5012a0 branches/2019Q4/graphics/mesa-dri/files/patch-dded2ed branches/2019Q4/graphics/mesa-dri/files/patch-e4803ab Modified: branches/2019Q4/graphics/libosmesa/Makefile branches/2019Q4/graphics/mesa-dri/Makefile branches/2019Q4/graphics/mesa-dri/Makefile.common branches/2019Q4/lang/clover/Makefile Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/graphics/libosmesa/Makefile ============================================================================== --- branches/2019Q4/graphics/libosmesa/Makefile Fri Oct 4 20:08:27 2019 (r513776) +++ branches/2019Q4/graphics/libosmesa/Makefile Fri Oct 4 20:09:12 2019 (r513777) @@ -3,7 +3,7 @@ PORTNAME= libosmesa PORTVERSION= ${MESAVERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics COMMENT= Off-Screen Mesa implementation of the OpenGL API Modified: branches/2019Q4/graphics/mesa-dri/Makefile ============================================================================== --- branches/2019Q4/graphics/mesa-dri/Makefile Fri Oct 4 20:08:27 2019 (r513776) +++ branches/2019Q4/graphics/mesa-dri/Makefile Fri Oct 4 20:09:12 2019 (r513777) @@ -3,7 +3,7 @@ PORTNAME= mesa-dri PORTVERSION= ${MESAVERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics COMMENT= OpenGL hardware acceleration drivers for DRI2+ Modified: branches/2019Q4/graphics/mesa-dri/Makefile.common ============================================================================== --- branches/2019Q4/graphics/mesa-dri/Makefile.common Fri Oct 4 20:08:27 2019 (r513776) +++ branches/2019Q4/graphics/mesa-dri/Makefile.common Fri Oct 4 20:09:12 2019 (r513777) @@ -74,6 +74,10 @@ INSTALL_TARGET= install-strip .include <bsd.port.pre.mk> +.if ${LLVM_DEFAULT:S,-devel,990,} >= 90 +LLVM_DEFAULT= 80 +.endif + .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH:Marm*} || ${ARCH} == i386 || ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>=3.9.0_4:devel/llvm${LLVM_DEFAULT} .if ${COMPONENT} != libs Modified: branches/2019Q4/lang/clover/Makefile ============================================================================== --- branches/2019Q4/lang/clover/Makefile Fri Oct 4 20:08:27 2019 (r513776) +++ branches/2019Q4/lang/clover/Makefile Fri Oct 4 20:09:12 2019 (r513777) @@ -17,12 +17,6 @@ ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= Clover needs a GPU supported by the Radeon KMS driver .include <bsd.port.options.mk> - -# Keep in sync with devel/libclc -.if ${LLVM_DEFAULT:S,-devel,990,} >= 90 -LLVM_DEFAULT= 80 -.endif - .include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common" CONFIGURE_ARGS+= --enable-opencl --enable-opencl-icd --disable-dri \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910042009.x94K9CY8003681>