>
> I am trying to install squid on a Mac OS X (10.3.x) server.
> I am logged in as root, and in Terminal.
>
> When I run ./configure --prefix=/usr/local, I get the following:
>
> server:/usr/local/squid-2.5.STABLE5 root# ./configure
> --prefix=/usr/local/
> loading cache ./config.cache
> checking for a BSD compatible install... /usr/bin/install -c
> checking whether build environment is sane... yes
> checking for mawk... no
> checking for gawk... no
> checking for nawk... no
> checking for awk... awk
> checking whether make sets ${MAKE}... no
> checking whether to enable maintainer-specific portions of
> Makefiles...
> no
> checking for gcc... no
> checking for cc... no
> configure: error: no acceptable cc found in $PATH
>
> when I try make - I get this:
>
> -sh : make: command not found
>
> I tried STABLE6 first, with the same results. My directions were for
> STABLE5, so I tried that- no difference.
>
> Help is greatly appreciated, as I need squid both as a cache,
> and also
> so I can run Dan's Guardian as a filter for a school, and school
> starting is fast approaching.
>
Your PATH env. variable must include a bindir for a valid C compiler.
% gcc OR
% cc
on command line will probably result in 'command not found'.
That has to be tackled/solved first.
It's the same for 'make'.
Perhaps sw. development compilers and related stuff is some kind
of separate bundle on Mac OS X. Don't know for sure though
M.