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