X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: Dong Soo Kim Newsgroups: comp.os.msdos.djgpp Subject: Re: GNU preprocessor problem? Date: Mon, 25 Feb 2002 09:04:08 +1100 Organization: The University of New South Wales Lines: 22 Message-ID: References: NNTP-Posting-Host: mozart.orchestra.cse.unsw.edu.au Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: tomahawk.unsw.edu.au 1014588154 24167 129.94.242.14 (24 Feb 2002 22:02:34 GMT) X-Complaints-To: abuse AT unsw DOT edu DOT au NNTP-Posting-Date: Sun, 24 Feb 2002 22:02:34 +0000 (UTC) X-X-Sender: dsk666 AT mozart DOT orchestra DOT cse DOT unsw DOT EDU DOT AU In-Reply-To: To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 24 Feb 2002, Hans-Bernhard Broeker wrote: > [...] > > The error_macro.h file actually defines the macro for > > non-windows (ie. #define p(s) { fprintf .. } ) instead of the windows > > macro (ie. #define p(s) { MessageBox .. } ). > > You'll have to debug that locally. Fix that version mixup (see other message). > If the problem still exists after that, compile your source like this: > > gccw32 -dD -E test.c > test.i > > and thoroughly inspect the generated file test.i. It contains the > output of the preprocessor. Carefully check all occurences of > _GNU_H_WINDOWS_H. The thing was that I never installed gcc2.8.1 .. I've only ever had 2.95.2, so can't really understand why 2.8.1 is called at all. Thanks for your advice :) DSK