r50650 - in /branches/upstream/libmodule-install-xsutil-perl/current: Changes META.yml lib/Module/Install/XSUtil.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Jan 10 16:47:01 UTC 2010


Author: jawnsy-guest
Date: Sun Jan 10 16:46:55 2010
New Revision: 50650

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50650
Log:
[svn-upgrade] Integrating new upstream version, libmodule-install-xsutil-perl (0.21)

Modified:
    branches/upstream/libmodule-install-xsutil-perl/current/Changes
    branches/upstream/libmodule-install-xsutil-perl/current/META.yml
    branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm

Modified: branches/upstream/libmodule-install-xsutil-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/Changes?rev=50650&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/Changes (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/Changes Sun Jan 10 16:46:55 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Module::Install::XSUtil
+
+0.21 Sun Jan 10 15:22:20 2010
+    - Enable -Wc++-compat on gcc >= 4.1
 
 0.20 Sat Jan  9 16:31:53 2010
     - Change cc_warnings()

Modified: branches/upstream/libmodule-install-xsutil-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/META.yml?rev=50650&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/META.yml (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/META.yml Sun Jan 10 16:46:55 2010
@@ -31,4 +31,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/gfx/Perl-Module-Install-XSUtil.git
-version: 0.20
+version: 0.21

Modified: branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm?rev=50650&op=diff
==============================================================================
--- branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm (original)
+++ branches/upstream/libmodule-install-xsutil-perl/current/lib/Module/Install/XSUtil.pm Sun Jan 10 16:46:55 2010
@@ -2,7 +2,7 @@
 
 use 5.005_03;
 
-$VERSION = '0.20';
+$VERSION = '0.21';
 
 use Module::Install::Base;
 @ISA     = qw(Module::Install::Base);
@@ -141,8 +141,11 @@
         $self->cc_append_to_ccflags(qw(-Wall));
 
         no warnings 'numeric';
-        if($Config{gccversion} >= 4.00){
-            $self->cc_append_to_ccflags('-Wextra -Wdeclaration-after-statement -Wc++-compat');
+        if($Config{gccversion} >= 4.0){
+            $self->cc_append_to_ccflags('-Wextra -Wdeclaration-after-statement');
+            if($Config{gccversion} >= 4.1){
+                $self->cc_append_to_ccflags('-Wc++-compat');
+            }
         }
         else{
             $self->cc_append_to_ccflags('-W -Wno-comment');
@@ -533,7 +536,7 @@
 
 =head1 VERSION
 
-This document describes Module::Install::XSUtil version 0.20.
+This document describes Module::Install::XSUtil version 0.21.
 
 =head1 SYNOPSIS
 




More information about the Pkg-perl-cvs-commits mailing list