diff options
-rwxr-xr-x | ext/Compress/Zlib/Makefile.PL | 2 | ||||
-rw-r--r-- | ext/Compress/Zlib/Zlib.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/Compress/Zlib/Makefile.PL b/ext/Compress/Zlib/Makefile.PL index 3c45fb03fa..d804fa18d5 100755 --- a/ext/Compress/Zlib/Makefile.PL +++ b/ext/Compress/Zlib/Makefile.PL @@ -26,7 +26,7 @@ my $WALL = '' ; my $GZIP_OS_CODE = -1 ; #$WALL = ' -pedantic ' if $Config{'cc'} =~ /gcc/ ; -$WALL = ' -Wall ' if $Config{'cc'} =~ /gcc/ ; +$WALL = ' -Wall -Wno-comment ' if $Config{'cc'} =~ /gcc/ ; my $PERL_CORE = grep { $_ eq 'PERL_CORE=1' } @ARGV; # don't ask if MM_USE_DEFAULT is set -- enables perl core building on cygwin diff --git a/ext/Compress/Zlib/Zlib.pm b/ext/Compress/Zlib/Zlib.pm index 8ba529e239..5e54996f74 100644 --- a/ext/Compress/Zlib/Zlib.pm +++ b/ext/Compress/Zlib/Zlib.pm @@ -16,7 +16,7 @@ use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.000_05'; +$VERSION = '2.000_06'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; |