%% "Kowalski, Dennis M" <[EMAIL PROTECTED]> writes: kdm> I am trying to configure GNU Make on a Sun Solaris box.
kdm> The make program is in /usr/ucb kdm> The configure script finds it but sets ac_prog_rejected = yes kdm> which causes the abort with the message configure: error: no kdm> acceptable cc found in $PATH Right. It's not make that's not acceptable, it's cc (your C compiler). Why did you think it was make that was causing your problem? Anyway, Solaris does not provide a C compiler with the base operating system. You cannot build GNU make (or any other program) from source without a compiler. So, you have to go get Sun's compiler (but this costs $$) or go get a pre-compiled version of GCC (try sunfreeware.com or similar). -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> 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 _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
