$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2006-10-18 11:08:45
Peter Dimov wrote:
> CVS-HEAD isn't being tested against Borland, is it?
Unfortunately not much is being tested on HEAD at present :-(
> Someone with access to a variety of Borland versions needs to try to
> replace bind.hpp line 937:
>
> #if 0
>
> with
>
> #if defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, <
> 0x??? )
>
> and report the correct value of 0x???. :-)
It requires:
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x582))
since the workaround is required with the latest compiler release. With
that change all but two of the bind tests pass with Borland-5.8.2 and all
the program options tests pass too.
John.