diff options
author | Steve Hay <SteveHay@planit.com> | 2005-10-17 15:48:24 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-10-17 15:48:24 +0000 |
commit | 68a72f3df7578a1622fef91a71fc6379b7dabb97 (patch) | |
tree | 2d5aca618b94266c492d0cb5165eb7fd43f40229 /ext/Compress | |
parent | 2497a41f89ff0ee654e845e5cd5aee558027f75d (diff) | |
download | perl-68a72f3df7578a1622fef91a71fc6379b7dabb97.tar.gz |
Silence gcc complaints about comments in config.h
This suppresses dozens of lines of warnings seen, e.g. here:
http://www.nntp.perl.org/group/perl.daily-build.reports/32231
p4raw-id: //depot/perl@25784
Diffstat (limited to 'ext/Compress')
-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; |