On Sat, Apr 22, 2006 at 09:28:50AM -0500, Bo Peng wrote: > > Please, instead of > > > > #ifdef _WIN32 > > #ifndef _WIN32 > > > > use > > > > #if defined(_WIN32) || defined(__CYGWIN__) > > #if !defined(_WIN32) && !defined(__CYGWIN__) > > > > in this code, as it will also work on Cygwin. > > Please fix that yourself, and test this feature with the attached > configure.py patch. My windows machine is painfully slow ... I will > create a full patch when the patches are confirmed to work.
Thanks, I'll do it. In the meantime, please also change + if os.name == 'nt': to + if os.name == 'nt' or sys.platform == 'cygwin': in your patch to configure.py. -- Enrico