Skip Menu |

This queue is for tickets about the NetAddr-IP CPAN distribution.

Report information
The Basics
Id: 106489
Status: resolved
Worked: 30 min
Priority: 0/
Queue: NetAddr-IP

People
Owner: Nobody in particular
Requestors: hsk [...] fli-leibniz.de
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 4.077
Fixed in: (no value)



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>
Oops! Fixed typo, released 4.078. Hopefully that will fix it. On Mon Aug 17 10:55:34 2015, hsk@fli-leibniz.de wrote: Show quoted text
> 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>