From owner-svn-ports-all@freebsd.org Sat Oct 20 21:39:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64F05FF6C3C; Sat, 20 Oct 2018 21:39:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C2038A8A2; Sat, 20 Oct 2018 21:39:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1705423C3E; Sat, 20 Oct 2018 21:39:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9KLdK60040346; Sat, 20 Oct 2018 21:39:20 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9KLdKFw040345; Sat, 20 Oct 2018 21:39:20 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810202139.w9KLdKFw040345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 20 Oct 2018 21:39:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482625 - head/graphics/mesa-dri X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/mesa-dri X-SVN-Commit-Revision: 482625 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2018 21:39:21 -0000 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}" \