On Mar 16, 2005, at 9:59 AM, Lars Sonchocky-Helldorf wrote:
obviously GSSSLHandle.m has not been ported to cygwin. I see there only stuff like:
#ifdef __MINGW32__ #ifndef __MINGW__ #define __MINGW__
and:
#if defined(__MINGW__) #include <winsock2.h>
but no occurence of any CYGWIN so far.
btw. what would be the right String on cygwin? __CYGWIN__?
A define for CYGWIN should not be used except perhaps in extremely unusual cases. Cygwin is basically Unix on Windows, so basic unix stuff should work there except where Window-specific problems get in the way. Thus, there are some checks for __WIN32__ which applies both to Cygwin and MingW, and checks for __MINGW__ which applies only to Mingw.
_______________________________________________ Bug-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gnustep
