Update contrib.
1 /*=============================================================================
2 Copyright (c) 2001-2003 Hartmut Kaiser
3 http://spirit.sourceforge.net/
5 Use, modification and distribution is subject to the Boost Software
6 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7 http://www.boost.org/LICENSE_1_0.txt)
8 =============================================================================*/
9 #if !defined(SPIRIT_VERSION_HPP)
10 #define SPIRIT_VERSION_HPP
12 ///////////////////////////////////////////////////////////////////////////////
14 // This checks, whether the used Boost library is at least V1.32.0
16 ///////////////////////////////////////////////////////////////////////////////
17 #include <boost/version.hpp>
19 #if BOOST_VERSION < 103200
20 #error "Spirit v1.8.x needs at least Boost V1.32.0 to compile successfully."
23 ///////////////////////////////////////////////////////////////////////////////
25 // This is the version of the current Spirit distribution
27 ///////////////////////////////////////////////////////////////////////////////
28 #define SPIRIT_VERSION 0x1804
29 #define SPIRIT_PIZZA_VERSION SPIRIT_DOUBLE_CHEESE // :-)
31 #endif // defined(SPIRIT_VERSION_HPP)