os/ossrv/ossrv_pub/boost_apis/boost/spirit/version.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*=============================================================================
     2     Copyright (c) 2001-2003 Hartmut Kaiser
     3     http://spirit.sourceforge.net/
     4 
     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
    11 
    12 ///////////////////////////////////////////////////////////////////////////////
    13 //
    14 //  This checks, whether the used Boost library is at least V1.32.0
    15 //
    16 ///////////////////////////////////////////////////////////////////////////////
    17 #include <boost/version.hpp>
    18 
    19 #if BOOST_VERSION < 103200
    20 #error "Spirit v1.8.x needs at least Boost V1.32.0 to compile successfully."
    21 #endif 
    22 
    23 ///////////////////////////////////////////////////////////////////////////////
    24 //
    25 //  This is the version of the current Spirit distribution
    26 //
    27 ///////////////////////////////////////////////////////////////////////////////
    28 #define SPIRIT_VERSION 0x1804
    29 #define SPIRIT_PIZZA_VERSION SPIRIT_DOUBLE_CHEESE  // :-)
    30 
    31 #endif // defined(SPIRIT_VERSION_HPP)