Subject: | Lite/Util/Makefile.PL no longer finds C compiler |
test_cc(), as changed in NetAddr-IP-4.077/Lite/Util/Makefile.PL, does no longer find C compiler.
within the foreach loop, test should be for $CC, not $_
<pre>
foreach $CC (($ENV{CC},$Config{ccname},$Config{cc})) {
- next unless $_;
+ next unless $CC;
my $command = qq|$CC compile.c -o compile.output|;
</pre>