bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Errors compiling make.c


From: Paul D. Smith
Subject: Re: Errors compiling make.c
Date: Sat, 21 Feb 2004 16:44:50 -0500

%% "Jonathan Willcock" <address@hidden> writes:

  jw> I'm getting errors compiling misc.c.

  jw> Functions message (222), error (258) and fatal (291) all generate
  jw> conflict errors with the prototype make.h (396, 398 and 400).

  jw> I'm using gnucc 3.3.2.

When reporting problems _PLEASE_ remember to include the version of make
you're using, the OS and version of the OS you're using, as well as
other information--in this case please cut and paste the exact errors
you're seeing into your message.  Without this fundamental information
there's very often absolutely nothing we can do to help you.  Please see
the README file and/or the GNU make manual for information on reporting
bugs.


I took a brief look at this and all I can see is that slightly different
preprocessor symbols are checked in the .h and .c files.


Try editing make.h and change line 391 from this:

  #ifdef __STDC__ && __STDC__

to this:

  #if __STDC__ && HAVE_STDVARARGS

and see if that helps.  If not, be sure to include all the information
asked for above.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist




reply via email to

[Prev in Thread] Current Thread [Next in Thread]