Breughel Macabuhay wrote:
> 
> Hi Scott,
> 
> Sorry but I'm still new to Solaris. Where can I get
> that C compiler? Sorry for being such a dummy.
> 

Before installing the Sun compiler, make sure you have really tried gcc.
By a happy coincidence, a user on the apache-server list has the same
problem to which I just sent this reply:

On Solaris, root runs with a limited path. To check it, do:

# echo $PATH
/usr/sbin:/usr/bin

So you often don't have basic tools in your path. Before starting the
configure script, you have to find all the tools and put them in the
path. As an example, here's how to add the Gnu C-compiler, "gcc".

# which gcc
no gcc in /usr/sbin /usr/bin

# find /usr -name "gcc"
/usr/local/bin/gcc

(your system could be different - just get the directory)

# PATH=$PATH:/usr/local/bin
# export PATH
# echo $PATH
/usr/sbin:/usr/bin:/usr/local/bin

# which gcc
/usr/local/bin/gcc

Now you can start the configure script in this shell and it should find
gcc.

Rgds,

Owen Boyle.
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to