From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Faylor To: GDB Discussion Subject: Re: _WIN32? Date: Tue, 17 Apr 2001 15:06:00 -0000 Message-id: <20010417180717.B29305@redhat.com> References: <3ADCBA75.3BCBE292@cygnus.com> X-SW-Source: 2001-04/msg00125.html On Tue, Apr 17, 2001 at 05:49:41PM -0400, Andrew Cagney wrote: >utils.c contains: > >#if !defined (MPW) && !defined (_WIN32) > /* No termcap under MPW, although might be cool to do something > by looking at worksheet or console window sizes. */ > /* Initialize the screen height and width from termcap. */ > >Given the ``!defined (MPW)'' bit is about to go, I'm wondering if the >!defined(_WIN32) is needed? > >Hmm, actually, I'm puzzled. Can anyone fill in the gaps? > __GO32__ djgpp I think __CYGWIN__ ok - cygwin __CYGWIN32__ ok - old __CYGWIN__ _WIN32 Pure WIN32 support 'gcc -mno-cygwin' -- don't know if it even builds. _WIN32 is now no longer defined by gcc. _WIN32_WCE Windows CE __MSDOS__ Dunno cgf