os/ossrv/ossrv_pub/boost_apis/boost/spirit/version.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/spirit/version.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,31 @@
     1.4 +/*=============================================================================
     1.5 +    Copyright (c) 2001-2003 Hartmut Kaiser
     1.6 +    http://spirit.sourceforge.net/
     1.7 +
     1.8 +    Use, modification and distribution is subject to the Boost Software
     1.9 +    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    1.10 +    http://www.boost.org/LICENSE_1_0.txt)
    1.11 +=============================================================================*/
    1.12 +#if !defined(SPIRIT_VERSION_HPP)
    1.13 +#define SPIRIT_VERSION_HPP
    1.14 +
    1.15 +///////////////////////////////////////////////////////////////////////////////
    1.16 +//
    1.17 +//  This checks, whether the used Boost library is at least V1.32.0
    1.18 +//
    1.19 +///////////////////////////////////////////////////////////////////////////////
    1.20 +#include <boost/version.hpp>
    1.21 +
    1.22 +#if BOOST_VERSION < 103200
    1.23 +#error "Spirit v1.8.x needs at least Boost V1.32.0 to compile successfully."
    1.24 +#endif 
    1.25 +
    1.26 +///////////////////////////////////////////////////////////////////////////////
    1.27 +//
    1.28 +//  This is the version of the current Spirit distribution
    1.29 +//
    1.30 +///////////////////////////////////////////////////////////////////////////////
    1.31 +#define SPIRIT_VERSION 0x1804
    1.32 +#define SPIRIT_PIZZA_VERSION SPIRIT_DOUBLE_CHEESE  // :-)
    1.33 +
    1.34 +#endif // defined(SPIRIT_VERSION_HPP)