aboutsummaryrefslogtreecommitdiffstats
path: root/main/boost1.78/boost-1.78.0-interprocess-musl-include.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/boost1.78/boost-1.78.0-interprocess-musl-include.patch')
-rw-r--r--main/boost1.78/boost-1.78.0-interprocess-musl-include.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/main/boost1.78/boost-1.78.0-interprocess-musl-include.patch b/main/boost1.78/boost-1.78.0-interprocess-musl-include.patch
deleted file mode 100644
index 5a6f8a97c5a..00000000000
--- a/main/boost1.78/boost-1.78.0-interprocess-musl-include.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Patch-Source: https://github.com/boostorg/interprocess/commit/d002a0d929ecb031843d806c2bda69e013442e13
-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
-