Newer
Older
minerva / Ports / boost / patches / 0002-Fix-building-Boost.Interprocess.patch
@minerva minerva on 13 Jul 1 KB Initial commit
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Gunnar Beutner <gunnar@beutner.name>
Date: Sun, 23 Oct 2022 10:27:07 +0200
Subject: [PATCH] Fix building Boost.Interprocess

---
 .../include/boost/interprocess/detail/workaround.hpp            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/interprocess/include/boost/interprocess/detail/workaround.hpp b/libs/interprocess/include/boost/interprocess/detail/workaround.hpp
index 01b6c6eb05dddff8c8b6fbb0c5c279deb971b7c2..6fc793b6009c24f2db4fc6b1aefb2d4d3eb4cfae 100644
--- a/libs/interprocess/include/boost/interprocess/detail/workaround.hpp
+++ b/libs/interprocess/include/boost/interprocess/detail/workaround.hpp
@@ -37,7 +37,7 @@
    //////////////////////////////////////////////////////
    //Check for XSI shared memory objects. They are available in nearly all UNIX platforms
    //////////////////////////////////////////////////////
-   #if !defined(__QNXNTO__) && !defined(__ANDROID__) && !defined(__HAIKU__) && !(__VXWORKS__)
+   #if !defined(__QNXNTO__) && !defined(__ANDROID__) && !defined(__HAIKU__) && !(__VXWORKS__) && !defined(__minerva__)
       #define BOOST_INTERPROCESS_XSI_SHARED_MEMORY_OBJECTS
    #endif