gentoo-ebuilds/dev-db/mysql/files/mysql-8.0.40-fix-bundled-abseil-gcc15.patch
Alfred Wingate fabdb139dc
dev-db/mysql: add 8.0.40
* Update source distribution locations.
* Drop GTEST_NO_DEATH_TEST hackery in favour of
  --gtest_death_test_style=threadsafe.

Bug: https://bugs.gentoo.org/937854
Bug: https://bugs.gentoo.org/938489
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/40066
Signed-off-by: Sam James <sam@gentoo.org>
2025-01-09 10:31:59 +00:00

19 lines
751 B
Diff

https://github.com/abseil/abseil-cpp/pull/1739
From https://github.com/abseil/abseil-cpp/commit/809e5de7b92950849289236a5a09e9cb4f32c7b9 Mon Sep 17 00:00:00 2001
From: Christopher Fore <csfore@posteo.net>
Date: Mon, 5 Aug 2024 12:09:18 -0700
Subject: [PATCH] PR #1739: container/internal: Explicitly include <cstdint>
GCC 15 will no longer include <cstdint> by default, resulting in build failures in projects that do not explicitly include it.
--- a/extra/abseil/abseil-cpp-20230802.1/absl/container/internal/container_memory.h
+++ b/extra/abseil/abseil-cpp-20230802.1/absl/container/internal/container_memory.h
@@ -17,6 +17,7 @@
#include <cassert>
#include <cstddef>
+#include <cstdint>
#include <cstring>
#include <memory>
#include <new>