Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Toenne <lukas.toenne@googlemail.com>2012-07-29 17:52:38 +0400
committerLukas Toenne <lukas.toenne@googlemail.com>2012-07-29 17:52:38 +0400
commit588e4a4327053f7948ba4412e77201b93eaf3b6b (patch)
tree696a82af1f2f64875a94576f3df08e1d23f42545 /intern/cycles/util
parent2553cdf195a1d1bbf19bde23b8bbe58de802d1f3 (diff)
Additional fix #32074, by Sven-Hendrik Haase (svenstaro). Boost version header must be included in cycles in order to expand the version check macro.
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_cache.cpp2
-rw-r--r--intern/cycles/util/util_path.cpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/intern/cycles/util/util_cache.cpp b/intern/cycles/util/util_cache.cpp
index d09e256c891..55ed50b2ca6 100644
--- a/intern/cycles/util/util_cache.cpp
+++ b/intern/cycles/util/util_cache.cpp
@@ -26,6 +26,8 @@
#include "util_path.h"
#include "util_types.h"
+#include <boost/version.hpp>
+
#if (BOOST_VERSION < 104400)
# define BOOST_FILESYSTEM_VERSION 2
#endif
diff --git a/intern/cycles/util/util_path.cpp b/intern/cycles/util/util_path.cpp
index f6b70bfb73f..a571fe81118 100644
--- a/intern/cycles/util/util_path.cpp
+++ b/intern/cycles/util/util_path.cpp
@@ -26,6 +26,8 @@ OIIO_NAMESPACE_USING
#include <stdio.h>
+#include <boost/version.hpp>
+
#if (BOOST_VERSION < 104400)
# define BOOST_FILESYSTEM_VERSION 2
#endif