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 B121B138334 for ; Sun, 8 Jul 2018 09:01:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C1EBE0821; Sun, 8 Jul 2018 09:01:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 529B6E0821 for ; Sun, 8 Jul 2018 09:01:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 38D2F335C7D for ; Sun, 8 Jul 2018 09:01:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29F1E349 for ; Sun, 8 Jul 2018 09:01:52 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1531040466.9aa4cb5f04ad7cb0bde81bb6238582ac0de1fd8b.anarchy@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: media-libs/mesa/, media-libs/mesa/files/ X-VCS-Repository: proj/musl X-VCS-Files: media-libs/mesa/files/mesa-18-missing-includes.patch media-libs/mesa/mesa-18.1.3.ebuild X-VCS-Directories: media-libs/mesa/ media-libs/mesa/files/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 9aa4cb5f04ad7cb0bde81bb6238582ac0de1fd8b X-VCS-Branch: master Date: Sun, 8 Jul 2018 09:01:52 +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-Archives-Salt: 48c559f0-e4f4-4f03-b634-425190300a64 X-Archives-Hash: bdeb4d55a3b83c9a7e1f13fba962f7a7 commit: 9aa4cb5f04ad7cb0bde81bb6238582ac0de1fd8b Author: Jory A. Pratt gentoo org> AuthorDate: Sun Jul 8 09:01:06 2018 +0000 Commit: Jory Pratt gentoo org> CommitDate: Sun Jul 8 09:01:06 2018 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=9aa4cb5f media-libs/mesa: Fix missing includes in mesa-18.1.3 .../mesa/files/mesa-18-missing-includes.patch | 53 ++++++++++++++++++++++ media-libs/mesa/mesa-18.1.3.ebuild | 1 + 2 files changed, 54 insertions(+) diff --git a/media-libs/mesa/files/mesa-18-missing-includes.patch b/media-libs/mesa/files/mesa-18-missing-includes.patch new file mode 100644 index 0000000..3f7bd62 --- /dev/null +++ b/media-libs/mesa/files/mesa-18-missing-includes.patch @@ -0,0 +1,53 @@ +From 456b660306e475a30f170a3bcecc0445124d7e2b Mon Sep 17 00:00:00 2001 +From: +Date: Sun, 8 Jul 2018 03:57:11 -0500 +Subject: [PATCH] Fix all missing includes for mesa + +Signed-off-by: +--- + src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h | 1 + + src/gallium/winsys/svga/drm/vmw_screen.h | 2 +- + src/util/rand_xor.c | 2 ++ + 3 files changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h +index d6af605..6eee83f 100644 +--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h ++++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h +@@ -32,6 +32,7 @@ + #include "ac_gpu_info.h" + #include "addrlib/addrinterface.h" + #include ++#include + #include "util/list.h" + + struct radv_amdgpu_winsys { +diff --git a/src/gallium/winsys/svga/drm/vmw_screen.h b/src/gallium/winsys/svga/drm/vmw_screen.h +index f21cabb..20d03f8 100644 +--- a/src/gallium/winsys/svga/drm/vmw_screen.h ++++ b/src/gallium/winsys/svga/drm/vmw_screen.h +@@ -34,7 +34,7 @@ + #ifndef VMW_SCREEN_H_ + #define VMW_SCREEN_H_ + +- ++#include + #include "pipe/p_compiler.h" + #include "pipe/p_state.h" + +diff --git a/src/util/rand_xor.c b/src/util/rand_xor.c +index de04bbc..08d507f 100644 +--- a/src/util/rand_xor.c ++++ b/src/util/rand_xor.c +@@ -24,6 +24,8 @@ + + #if defined(__linux__) + #include ++#include ++#include + #include + #include + #else +-- +2.18.0 + diff --git a/media-libs/mesa/mesa-18.1.3.ebuild b/media-libs/mesa/mesa-18.1.3.ebuild index 256a07b..1a602e6 100644 --- a/media-libs/mesa/mesa-18.1.3.ebuild +++ b/media-libs/mesa/mesa-18.1.3.ebuild @@ -276,6 +276,7 @@ src_prepare() { eapply "${FILESDIR}"/${PN}-17-musl-invocation_name.patch eapply "${FILESDIR}"/${PN}-18-musl-pthread.patch eapply "${FILESDIR}"/${PN}-18-intel-missing-time_t.patch + eapply "${FILESDIR}"/${PN}-18-missing-includes.patch eapply_user [[ ${PV} == 9999 ]] && eautoreconf