
23 Aug
2004
23 Aug
'04
2:07 p.m.
On Mon, Aug 23, 2004 at 08:13:39AM -0400, Beman Dawes wrote:
#if defined(BOOST_WINDOWS) // accept native Windows format paths ... #endif
The #if needs to be changed to:
#if defined(BOOST_WINDOWS) || defined(__CYGWIN__)
Just in one or a few places you mean? Otherwise you might as well just define BOOST_POSIX. -- Carlo Wood <carlo@alinoe.com>