Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <003b01c28991$00ebc5b0$78d96f83@pomello> From: "Max Bowsher" To: "Eric Belhomme" , References: <20021110192754 DOT 9C6662CA74 AT inet1 DOT ywave DOT com> <002e01c2896d$ca899510$0a01a8c0 AT athlon> Subject: Re: how-to use _WIN32 preprocessor with cygwin ? Date: Mon, 11 Nov 2002 14:45:39 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Eric Belhomme wrote: >> The cygwin-specific gcc compile flag -mwin32 causes the _WIN32 macro >> to be defined. Certain cygwin applications predate that >> arrangement, so confusion is understandable. >> > Thanks for your answer :-) > So I wonder I have to modify the configure script to add -mwin32 > flag on gcc option if I detect cygwin environment. Question : How to > detect cygwin environment ? Or, just use code like this in your C files: #if defined(_WIN32) || defined(__CYGWIN__) Win32 or Cygwin #endif If you do want to detect Cygwin in a configure script, then you just do AC_CANONICAL_HOST, and then: case $host_os in *cygwin* ) do cygwin stuff;; * ) do other stuff;; esac Max. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/