[6484] in Kerberos
Re: (no subject)
daemon@ATHENA.MIT.EDU (Derek Atkins)
Tue Jan 16 18:49:30 1996
Date: Tue, 16 Jan 1996 18:32:57 -0500
From: Derek Atkins <warlord@MIT.EDU>
To: Sue Chichester <sue@geneseo.edu>
Cc: kerberos@MIT.EDU
In-Reply-To: "[6483] in Kerberos"
First thing to check:
which cc
If it is using /usr/ucb.cc, that is the problem. You need to tell it
which compiler to use by using the CC environment variable. For
example, if you have "acc" installed, you should do something like
this:
(setenv CC acc; ./configure)
It sounds like the configure script is finding a "broken" compiler in
your path ahead of a working one. For example, "cc" on most Solaris
machines is a script that just says "I dont work", which is of course
a broken thing to do...
Hope this helps.
-derek