In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/806047e5a77079b7627be53718dce0e7d4f024ba?hp=328639fbc1d40cd59108388114f079f091562794>

- Log -----------------------------------------------------------------
commit 806047e5a77079b7627be53718dce0e7d4f024ba
Author: David Mitchell <[email protected]>
Date:   Fri Nov 21 12:48:59 2014 +0000

    fix builds with ExtUtils::ParseXS
    
    A recent change to ExtUtils::ParseXS broke builds: add
        PERL_UNUSED_VAR(file)
    only when the 'file' var is present.
-----------------------------------------------------------------------

Summary of changes:
 dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm 
b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
index 765ef86..d0429ed 100644
--- a/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
+++ b/dist/ExtUtils-ParseXS/lib/ExtUtils/ParseXS.pm
@@ -914,13 +914,14 @@ EOF
 ##else
 #    const char* file = __FILE__;
 ##endif
+#
+#    PERL_UNUSED_VAR(file);
 EOF
 
   print Q("#\n");
 
   print Q(<<"EOF");
 #    PERL_UNUSED_VAR(cv); /* -W */
-#    PERL_UNUSED_VAR(file);
 #    PERL_UNUSED_VAR(items); /* -W */
 EOF
 

--
Perl5 Master Repository

Reply via email to