Date: Sat, 20 Oct 2018 21:39:20 +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: r482625 - head/graphics/mesa-dri Message-ID: <201810202139.w9KLdKFw040345@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810202139.w9KLdKFw040345>