%% Gabriel Zachmann <[EMAIL PROTECTED]> writes:
gz> when I try to make gnu make under IRIX 6.2, configure stops at
gz> this point:
gz> checking for stpcpy... no
gz> Argument expected
gz> When I try to make it under IRIX 6.5, it gets beyound that point,
gz> but still prints an error message:
gz> checking for stpcpy... no
gz> ./configure[2781]: test: argument expected
You need to edit the configure script. Change line 3172 from this:
if test $ac_cv_func_gettimeofday = yes; then
to this:
if test "$ac_cv_func_gettimeofday" = yes; then
(add in the quotes as above).
gz> Did you really mean 'stpcpy', not 'strcpy' ??
Yes, I really meant stpcpy() :).
gz> I just tried it and replaced 'stpcpy' by 'strcpy'.
gz> I still get the same err msg as above,
gz> but 'make check' says that all tests are ok.
?? How could you build and run "make check" if the configure script
failed to run?
gz> In addition, I get several compiler err msg:
You cannot compile the code unless "configure" succeeds. All these
errors will not happen once you get "configure" to run correctly.
If I were you I'd extract a completely fresh copy of the source from the
tar file, make the change to the configure script above, then try again
from scratch.
--
-------------------------------------------------------------------------------
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