
23 Aug
2004
23 Aug
'04
9:48 p.m.
At 11:20 AM 8/23/2004, Carlo Wood wrote:
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.
The code given was for exposition. The actual code may vary, and might just force BOOST_WINDOWS. But it there are a bunch of cases, and each will have to be looked at to make sure it should be included. --Beman