From: Gerrit P. Haase Date: Wed, 29 May 2002 08:06:43 +0000 (+0200) Subject: Re: [PATCHES] Re: libwin32 on Cygwin? X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=026fd48b7e5bb16823ca7a3c78b4542ca28cbd50;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCHES] Re: libwin32 on Cygwin? From: "Gerrit P. Haase" Message-ID: <1881715214417.20020529080643@familiehaase.de> p4raw-id: //depot/perl@16853 --- diff --git a/perl.h b/perl.h index 43678ee..0403345 100644 --- a/perl.h +++ b/perl.h @@ -77,6 +77,12 @@ # endif #endif +/* undef WIN32 when building on Cygwin (for libwin32) - gph */ +#ifdef __CYGWIN__ +# undef WIN32 +# undef _WIN32 +#endif + /* Use the reentrant APIs like localtime_r and getpwent_r */ /* Win32 has naturally threadsafe libraries, no need to use any _r variants. */ #if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(NETWARE) && !defined(WIN32) && !defined(__APPLE__)