%% Klaus Zeitler <[EMAIL PROTECTED]> writes:

  kz> I'm trying to build make version 3.79, but when I run configure
  kz> and then make gcc complains:

Please always try with the latest version.  The latest version of GNU
make is 3.79.1.

  kz>  extern void bcopy PARAMS ((const char *b1, char *b2, int));

This is correct.

  kz>  extern void bcopy(const void *, void *, size_t);

This is wrong, I think: bcopy() is an ancient BSD function, provided
before void was introduced.  It's always used char*.

At any rate, I think the latest autoconf (to be included in the new
version of GNU make) will fix this problem.

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

_______________________________________________
Bug-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-make

Reply via email to