svn commit: r482625 - head/graphics/mesa-dri
Jan Beich
jbeich at FreeBSD.org
Sat Oct 20 21:39:21 UTC 2018
Author: jbeich
Date: Sat Oct 20 21:39:20 2018
New Revision: 482625
URL: https://svnweb.freebsd.org/changeset/ports/482625
Log:
graphics/mesa-dri: don't forbid WAYLAND on non-x86
At least aarch64, armv6, armv7 couldn't set OPTIONS_SET+=WAYLAND via make.conf
(see also bug 227509) despite Wayland itself not having such a limitation.
=>> Ignoring graphics/mesa-dri: option WAYLAND is only valid on platforms with Vulkan
PR: 221540
Pointy hat to: jbeich (regressed by r482192)
Modified:
head/graphics/mesa-dri/Makefile (contents, props changed)
Modified: head/graphics/mesa-dri/Makefile
==============================================================================
--- head/graphics/mesa-dri/Makefile Sat Oct 20 21:39:08 2018 (r482624)
+++ head/graphics/mesa-dri/Makefile Sat Oct 20 21:39:20 2018 (r482625)
@@ -80,11 +80,8 @@ LDFLAGS+= -B${LOCALBASE}/bin
.endif
# enables VK_KHR_wayland_surface in Vulkan drivers
-.if ${PORT_OPTIONS:MWAYLAND}
+.if ${PORT_OPTIONS:MWAYLAND} && !empty(VULKAN_DRIVERS)
CONFIGURE_ARGS+= --with-platforms=x11,surfaceless,drm,wayland
-. if empty(VULKAN_DRIVERS)
-IGNORE= option WAYLAND is only valid on platforms with Vulkan
-. endif
.endif
CONFIGURE_ARGS+= --with-dri-drivers="${DRI_DRIVERS:tl}" \
More information about the svn-ports-all
mailing list