summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-07-06 11:34:10 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-07-06 12:27:31 +0200
commit83fa068a17d25caf9270499dc08f4b3f0e081dcc (patch)
tree03dc140442973f78f7700292cd478698347d7817 /dev-libs/boost/files
parentdev-qt/qtcore: Drop 5.15.5 (r0) (diff)
downloadgentoo-83fa068a17d25caf9270499dc08f4b3f0e081dcc.tar.gz
gentoo-83fa068a17d25caf9270499dc08f4b3f0e081dcc.tar.bz2
gentoo-83fa068a17d25caf9270499dc08f4b3f0e081dcc.zip
dev-libs/boost: Drop 1.78.0-r2
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/boost/files')
-rw-r--r--dev-libs/boost/files/boost-1.78.0-interprocess-musl-include.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/dev-libs/boost/files/boost-1.78.0-interprocess-musl-include.patch b/dev-libs/boost/files/boost-1.78.0-interprocess-musl-include.patch
deleted file mode 100644
index 85d25861f11b..000000000000
--- a/dev-libs/boost/files/boost-1.78.0-interprocess-musl-include.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-https://github.com/boostorg/interprocess/commit/d002a0d929ecb031843d806c2bda69e013442e13
-https://bugs.gentoo.org/829147
-
-From: Leonardo Neumann <leonardo@neumann.dev.br>
-Date: Mon, 13 Dec 2021 01:07:20 -0300
-Subject: [PATCH] Fix missing sys/stat.h include on musl-based systems
-
-Boost 1.78.0 fails to build on musl-based systems because musl does
-not include sys/stat.h by default.
-
-Fixes #161 ("Boost compiler error")
---- a/boost/interprocess/permissions.hpp
-+++ b/boost/interprocess/permissions.hpp
-@@ -29,6 +29,10 @@
-
- #include <boost/interprocess/detail/win32_api.hpp>
-
-+#else
-+
-+#include <sys/stat.h>
-+
- #endif
-
- #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
-