diff --git a/Changes b/Changes index 6fa7990..f892aa2 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension NetAddr::IP +4.025 Sat Mar 7 16:15:18 PST 2009 + revised compiler test in Makefile.PL for Util v1.29 + to accomodate picky Solaris "cc" + 4.024 Mon Jan 26 00:27:32 PST 2009 documentation update @@ -11,7 +15,7 @@ 4.022 Sat Dec 20 13:05:01 PST 2008 In Util.xs 1.28 - set uninitialized "carry" in XS bin2bcd to zero + set uninitialized "carry" in XS bin2bcd to zero This insidious bug only showed up on 64 bit hosts running perl 5.6.2 Thanks to Oliver Paukstadt for taking the @@ -27,10 +31,10 @@ Rob Riepel thanks Rob. - revised UtilPP v1.7 to work around perl 5.8.4 - failures with certain @_ operations of goto &sub... - see perl bug [ 23429]. Unfortunately, perl-5.8.4 is - the distribution of choice for many solaris boxes + revised UtilPP v1.7 to work around perl 5.8.4 + failures with certain @_ operations of goto &sub... + see perl bug [ 23429]. Unfortunately, perl-5.8.4 is + the distribution of choice for many solaris boxes 4.019 Sat Nov 29 15:15:30 PST 2008 in Lite/Util, add pure perl testing to XS build diff --git a/IP.pm b/IP.pm index d6d7be5..b6ea052 100644 --- a/IP.pm +++ b/IP.pm @@ -34,7 +34,7 @@ @ISA = qw(Exporter NetAddr::IP::Lite); -$VERSION = do { sprintf " %d.%03d", (q$Revision: 4.24 $ =~ /\d+/g) }; +$VERSION = do { sprintf " %d.%03d", (q$Revision: 4.25 $ =~ /\d+/g) }; =pod diff --git a/Lite/Util/Changes b/Lite/Util/Changes index cc4a8ea..179a6b5 100644 --- a/Lite/Util/Changes +++ b/Lite/Util/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension NetAddr::IP::Util +1.29 Sat Mar 7 16:15:18 PST 2009 + revised compiler test in Makefile.PL for Util v1.29 + to accomodate picky Solaris "cc" + 1.28 Wed Dec 17 14:14:06 PST 2008 set uninitialized "carry" in XS bin2bcd to zero diff --git a/Lite/Util/Makefile.PL b/Lite/Util/Makefile.PL index 7e2e09a..7d5ab82 100644 --- a/Lite/Util/Makefile.PL +++ b/Lite/Util/Makefile.PL @@ -179,8 +179,8 @@ sub test_cc { # - # The perl/C check borrowed from Graham Barr's - # Scalar-List-Utils distribution. + # The perl/C check borrowed and modified from + # Graham Barr's Scalar-List-Utils distribution. # print "Testing if you have a C compiler and the needed header files....\n"; @@ -189,13 +189,17 @@ return; } + my $command = qq|$Config{ccname} compile.c -o compile.output|; + print F <<'EOF'; int main() { return 0; } EOF close(F) or return; - my $rv = system("$Config{'ccname'} compile.c -o compile$Config{obj_ext}"); + print STDERR $command,"\n"; + + my $rv = system($command); foreach my $file (glob('compile*')) { unlink($file) || warn "Could not delete $file: $!\n"; diff --git a/Lite/Util/Util.pm b/Lite/Util/Util.pm index 0b55e96..fc01bf8 100644 --- a/Lite/Util/Util.pm +++ b/Lite/Util/Util.pm @@ -13,7 +13,7 @@ @ISA = qw(Exporter DynaLoader); -$VERSION = do { my @r = (q$Revision: 1.28 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +$VERSION = do { my @r = (q$Revision: 1.29 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; @EXPORT_OK = qw( inet_aton diff --git a/META.yml b/META.yml index 00438a4..c196a3a 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: NetAddr-IP -version: 4.024 +version: 4.025 abstract: Manages IPv4 and IPv6 addresses and subnets license: ~ author: