From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A29D138334 for ; Sun, 8 Dec 2019 18:37:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A1B2E0899; Sun, 8 Dec 2019 18:37:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83602E0899 for ; Sun, 8 Dec 2019 18:37:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EB9334D773 for ; Sun, 8 Dec 2019 18:37:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54F6B7FE for ; Sun, 8 Dec 2019 18:37:10 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1575830222.5cc23f3882c4026d7b1a7d27c9d825bad6cf947b.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/, gui-libs/wlroots/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/wlroots/files/wlroots-0.8.1-eglmesaextfix.patch gui-libs/wlroots/wlroots-0.8.1-r1.ebuild X-VCS-Directories: gui-libs/wlroots/files/ gui-libs/wlroots/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 5cc23f3882c4026d7b1a7d27c9d825bad6cf947b X-VCS-Branch: master Date: Sun, 8 Dec 2019 18:37:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 35774dfc-3eb5-48b6-ab43-a9fb0af991c7 X-Archives-Hash: ba83d846e0b97458bde0066d509cb891 commit: 5cc23f3882c4026d7b1a7d27c9d825bad6cf947b Author: Aaron Bauman gentoo org> AuthorDate: Sun Dec 8 18:35:42 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Dec 8 18:37:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cc23f38 gui-libs/wlroots: add patch to include EGL/eglmesaext.h * Patch is currently in upstream master. Expect it to hit on next release (0.8.2+) Closes: https://bugs.gentoo.org/700114 Signed-off-by: Aaron Bauman gentoo.org> .../files/wlroots-0.8.1-eglmesaextfix.patch | 25 ++++++++++++++++++++++ gui-libs/wlroots/wlroots-0.8.1-r1.ebuild | 3 +++ 2 files changed, 28 insertions(+) diff --git a/gui-libs/wlroots/files/wlroots-0.8.1-eglmesaextfix.patch b/gui-libs/wlroots/files/wlroots-0.8.1-eglmesaextfix.patch new file mode 100644 index 00000000000..614d0c7a2cd --- /dev/null +++ b/gui-libs/wlroots/files/wlroots-0.8.1-eglmesaextfix.patch @@ -0,0 +1,25 @@ +From d113e48a2a32542fe6e12f1759f07888364609bf Mon Sep 17 00:00:00 2001 +From: Ferdinand Bachmann +Date: Sat, 19 Oct 2019 13:33:22 +0200 +Subject: [PATCH] Add missing include required by mesa and libglvnd change + +eglext.h no longer inludes eglmesaext.h, include it within wlroots +explicitly. + +Fixes #1862 +--- + glgen.sh | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/glgen.sh b/glgen.sh +index 7324fdf6b..31af28120 100755 +--- a/glgen.sh ++++ b/glgen.sh +@@ -75,6 +75,7 @@ cat > "$OUTDIR/$BASE.h" << EOF + + #include + #include ++#include + #include + #include + diff --git a/gui-libs/wlroots/wlroots-0.8.1-r1.ebuild b/gui-libs/wlroots/wlroots-0.8.1-r1.ebuild index 50a4262598f..51f138afcfd 100644 --- a/gui-libs/wlroots/wlroots-0.8.1-r1.ebuild +++ b/gui-libs/wlroots/wlroots-0.8.1-r1.ebuild @@ -68,6 +68,9 @@ src_configure() { emesonargs+=("-Dlogind=disabled") fi + # Patch is currently in upstream master + eapply "${FILESDIR}/wlroots-0.8.1-eglmesaextfix.patch" + meson_src_configure }