> It means that it cannot find your $Config{cc} in path.  What is the
> output of this?
> 
>       perl -MConfig -le 'print Config->{cc}'

output is:

> perl -MConfig -le 'print Config->{cc}'
gcc -B/usr/ccs/bin/

I have only had an issue with par. All other modules that require a C 
compiler have worked for me.

> 
> As a workaround, you may modify inc/Module/Install/Can.pm by hand, so
> can_cc always returns true:
> 
>       sub can_cc {
>           return 1; # add this line
>           ...
>       }
> 
> Let me know if this works or not. :-)

This appears to have worked. Thanks!!

-Randy

Reply via email to