annotate DEPENDENCIES/generic/include/boost/predef/compiler/compaq.h @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
rev   line source
Chris@16 1 /*
Chris@16 2 Copyright Redshift Software, Inc. 2008-2013
Chris@16 3 Distributed under the Boost Software License, Version 1.0.
Chris@16 4 (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7
Chris@16 8 #ifndef BOOST_PREDEF_COMPILER_COMPAQ_H
Chris@16 9 #define BOOST_PREDEF_COMPILER_COMPAQ_H
Chris@16 10
Chris@16 11 #include <boost/predef/version_number.h>
Chris@16 12 #include <boost/predef/make.h>
Chris@16 13
Chris@16 14 /*`
Chris@16 15 [heading `BOOST_COMP_DEC`]
Chris@16 16
Chris@16 17 [@http://www.openvms.compaq.com/openvms/brochures/deccplus/ Compaq C/C++] compiler.
Chris@16 18 Version number available as major, minor, and patch.
Chris@16 19
Chris@16 20 [table
Chris@16 21 [[__predef_symbol__] [__predef_version__]]
Chris@16 22
Chris@16 23 [[`__DECCXX`] [__predef_detection__]]
Chris@16 24 [[`__DECC`] [__predef_detection__]]
Chris@16 25
Chris@16 26 [[`__DECCXX_VER`] [V.R.P]]
Chris@16 27 [[`__DECC_VER`] [V.R.P]]
Chris@16 28 ]
Chris@16 29 */
Chris@16 30
Chris@16 31 #define BOOST_COMP_DEC BOOST_VERSION_NUMBER_NOT_AVAILABLE
Chris@16 32
Chris@16 33 #if defined(__DECC) || defined(__DECCXX)
Chris@16 34 # undef BOOST_COMP_DEC
Chris@16 35 # if !defined(BOOST_COMP_DEC) && defined(__DECCXX_VER)
Chris@16 36 # define BOOST_COMP_DEC BOOST_PREDEF_MAKE_10_VVRR0PP00(__DECCXX_VER)
Chris@16 37 # endif
Chris@16 38 # if !defined(BOOST_COMP_DEC) && defined(__DECC_VER)
Chris@16 39 # define BOOST_COMP_DEC BOOST_PREDEF_MAKE_10_VVRR0PP00(__DECC_VER)
Chris@16 40 # endif
Chris@16 41 # if !defined(BOOST_COMP_DEC)
Chris@16 42 # define BOOST_COM_DEV BOOST_VERSION_NUMBER_AVAILABLE
Chris@16 43 # endif
Chris@16 44 #endif
Chris@16 45
Chris@16 46 #if BOOST_COMP_DEC
Chris@16 47 # define BOOST_COMP_DEC_AVAILABLE
Chris@16 48 #endif
Chris@16 49
Chris@16 50 #define BOOST_COMP_DEC_NAME "Compaq C/C++"
Chris@16 51
Chris@16 52 #include <boost/predef/detail/test.h>
Chris@16 53 BOOST_PREDEF_DECLARE_TEST(BOOST_COMP_DEC,BOOST_COMP_DEC_NAME)
Chris@16 54
Chris@16 55
Chris@16 56 #endif