From 2f02384d22a7e5caac9e1918961d114158fab532 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Sat, 6 May 2017 09:45:36 +0000 Subject: [PATCH] Disbale boost::interprocess condition variables on Linux to fix issue #3911 --- include/storage/shared_monitor.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/storage/shared_monitor.hpp b/include/storage/shared_monitor.hpp index 5aa1a5104..b80d2d3c5 100644 --- a/include/storage/shared_monitor.hpp +++ b/include/storage/shared_monitor.hpp @@ -12,7 +12,8 @@ #include #if defined(__linux__) -#define USE_BOOST_INTERPROCESS_CONDITION 1 +// See issue #3911, boost interprocess is broken with a glibc > 2.25 +// #define USE_BOOST_INTERPROCESS_CONDITION 1 #endif namespace osrm