From 804c90d46e0f1efd888bf75e103bc5396ddf35da Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 18 Mar 2014 14:17:25 -0700 Subject: [PATCH] fix c++11/clang-3.4/linux compile issue - closes #2022 --- bindings/python/boost_std_shared_shim.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/boost_std_shared_shim.hpp b/bindings/python/boost_std_shared_shim.hpp index 50a6bbbbb..e25560acb 100644 --- a/bindings/python/boost_std_shared_shim.hpp +++ b/bindings/python/boost_std_shared_shim.hpp @@ -25,8 +25,9 @@ // boost #include +#include -#if BOOST_VERSION < 105300 +#if BOOST_VERSION < 105300 || defined BOOST_NO_CXX11_SMART_PTR // https://github.com/mapnik/mapnik/issues/2022 #include