Date: Sun, 28 Oct 2018 05:04:41 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483225 - head/graphics/mesa-dri Message-ID: <201810280504.w9S54fhP095745@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Oct 28 05:04:41 2018 New Revision: 483225 URL: https://svnweb.freebsd.org/changeset/ports/483225 Log: graphics/mesa-dri: unbreak GCC build after r438198 configure: error: --enable-llvm is required when building r300 PR: 231329 Approved by: maintainer timeout (1 month) Modified: head/graphics/mesa-dri/Makefile (contents, props changed) Modified: head/graphics/mesa-dri/Makefile ============================================================================== --- head/graphics/mesa-dri/Makefile Sun Oct 28 05:02:36 2018 (r483224) +++ head/graphics/mesa-dri/Makefile Sun Oct 28 05:04:41 2018 (r483225) @@ -46,7 +46,11 @@ VULKAN_DRIVERS= # .if ${ARCH} == amd64 || ${ARCH} == i386 \ || ${ARCH} == powerpc || ${ARCH} == powerpc64 DRI_DRIVERS+= RADEON R200 -GALLIUM_DRIVERS+= R300 R600 +GALLIUM_DRIVERS+= R600 +. if "${MESA_LLVM_VER}" != "" && (${ARCH} == amd64 || ${ARCH} == i386) +# https://cgit.freedesktop.org/mesa/mesa/commit/?id=58952675f6d4 +GALLIUM_DRIVERS+= R300 +. endif . if "${MESA_LLVM_VER}" != "" # until PPC gets LLVM in base GALLIUM_DRIVERS+= RADEONSI VULKAN_DRIVERS+= RADEON
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810280504.w9S54fhP095745>