From owner-svn-ports-head@freebsd.org Tue Oct 16 00:00:09 2018 Return-Path: Delivered-To: svn-ports-head@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 666BA10CCCBD; Tue, 16 Oct 2018 00:00:09 +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 1C8658AD84; Tue, 16 Oct 2018 00:00:09 +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 1797C143AB; Tue, 16 Oct 2018 00:00:09 +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 w9G008cX086476; Tue, 16 Oct 2018 00:00:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9G008S3086475; Tue, 16 Oct 2018 00:00:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201810160000.w9G008S3086475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 16 Oct 2018 00:00:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482191 - head/graphics/mesa-libs X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/mesa-libs X-SVN-Commit-Revision: 482191 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2018 00:00:09 -0000 Author: jbeich Date: Tue Oct 16 00:00:08 2018 New Revision: 482191 URL: https://svnweb.freebsd.org/changeset/ports/482191 Log: graphics/mesa-libs: enable surfaceless like upstream PR: 224659 Approved by: maintainer timeout (9 months) Modified: head/graphics/mesa-libs/Makefile (contents, props changed) Modified: head/graphics/mesa-libs/Makefile ============================================================================== --- head/graphics/mesa-libs/Makefile Mon Oct 15 23:59:54 2018 (r482190) +++ head/graphics/mesa-libs/Makefile Tue Oct 16 00:00:08 2018 (r482191) @@ -3,7 +3,7 @@ PORTNAME= mesa-libs PORTVERSION= ${MESAVERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics COMMENT= OpenGL libraries that support GLX and EGL clients @@ -27,9 +27,9 @@ CONFIGURE_ARGS+= --with-dri-drivers="" --with-gallium- # libEGL needs gallium enabled which depends on llvm .if "${MESA_LLVM_VER}" != "" .if ${PORT_OPTIONS:MWAYLAND} -CONFIGURE_ARGS+= --with-platforms=x11,drm,wayland +CONFIGURE_ARGS+= --with-platforms=x11,surfaceless,drm,wayland .else -CONFIGURE_ARGS+= --with-platforms=x11,drm +CONFIGURE_ARGS+= --with-platforms=x11,surfaceless,drm .endif PLIST_SUB+= EGL="" .else