$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Turkanis (technews_at_[hidden])
Date: 2005-07-05 17:28:30
Jonathan Turkanis wrote:
> As a result, I'd recommend something like:
>
> # ifdef __GNUC_PATCHLEVEL__
> # define BOOST_GCC (__GNUC__ * 100UL + __GNUC_MINOR__)
> # define BOOST_GCC_FULL_VERSION ((_GNUC_ * 100UL + __GNUC_MINOR__)
> * 100UL + __GNUC_PATCHLEVEL__)
> # else
> # define BOOST_GCC 0
# define BOOST_GCC_FULL_VERSION 0
> # endif
> Jonathan