diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-02-22 17:40:43 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2023-02-23 21:50:31 +0100 |
commit | 39824b9630ab0b5a54c9aa3d39b81fe7c1228859 (patch) | |
tree | 6541db3a5f2288535a64ccbff37869687d2809e0 /dev-util/watchman | |
parent | net-misc/streamlink: Stabilize 5.2.1 amd64, #891437 (diff) | |
download | gentoo-39824b9630ab0b5a54c9aa3d39b81fe7c1228859.tar.gz gentoo-39824b9630ab0b5a54c9aa3d39b81fe7c1228859.tar.bz2 gentoo-39824b9630ab0b5a54c9aa3d39b81fe7c1228859.zip |
dev-util/watchman: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29728
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-util/watchman')
-rw-r--r-- | dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch b/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch deleted file mode 100644 index 20c70d29e28b..000000000000 --- a/dev-util/watchman/files/watchman-2023.01.16.00-gcc13.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://github.com/facebook/watchman/pull/1089 - -From 6535e011af5b89e9aa2a6faa60fc862f36f8b483 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Sun, 22 Jan 2023 05:09:25 +0000 -Subject: [PATCH] Fix build with GCC 13 (add missing <cstdint> include) - -GCC 13 (as usual for new compiler releases) shuffles around some -internal includes and so <cstdint> is no longer transitively included. - -Explicitly include <cstdint> for uint32_t. - -Signed-off-by: Sam James <sam@gentoo.org> ---- a/watchman/Errors.h -+++ b/watchman/Errors.h -@@ -8,6 +8,7 @@ - #pragma once - - #include <fmt/core.h> -+#include <cstdint> - #include <string> - #include <system_error> - |