Skip to content

Commit

Permalink
Update Encode to 3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Leont committed Oct 19, 2021
1 parent 741719f commit 079dcbe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Porting/Maintainers.pl
Expand Up @@ -387,7 +387,7 @@ package Maintainers;
},

'Encode' => {
'DISTRIBUTION' => 'DANKOGAI/Encode-3.15.tar.gz',
'DISTRIBUTION' => 'DANKOGAI/Encode-3.16.tar.gz',
'FILES' => q[cpan/Encode],
'EXCLUDED' => [
qw( t/whatwg-aliases.json
Expand Down
4 changes: 2 additions & 2 deletions cpan/Encode/Encode.pm
@@ -1,13 +1,13 @@
#
# $Id: Encode.pm,v 3.15 2021/10/08 15:28:22 dankogai Exp $
# $Id: Encode.pm,v 3.16 2021/10/13 08:29:04 dankogai Exp $
#
package Encode;
use strict;
use warnings;
use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG};
our $VERSION;
BEGIN {
$VERSION = sprintf "%d.%02d", q$Revision: 3.15 $ =~ /(\d+)/g;
$VERSION = sprintf "%d.%02d", q$Revision: 3.16 $ =~ /(\d+)/g;
require XSLoader;
XSLoader::load( __PACKAGE__, $VERSION );
}
Expand Down
2 changes: 1 addition & 1 deletion cpan/Encode/Encode.xs
@@ -1,5 +1,5 @@
/*
$Id: Encode.xs,v 2.51 2021/10/08 15:29:23 dankogai Exp dankogai $
$Id: Encode.xs,v 2.51 2021/10/08 15:29:23 dankogai Exp $
*/

#define PERL_NO_GET_CONTEXT
Expand Down
4 changes: 2 additions & 2 deletions cpan/Encode/Makefile.PL
@@ -1,5 +1,5 @@
#
# $Id: Makefile.PL,v 2.23 2020/12/02 01:28:17 dankogai Exp $
# $Id: Makefile.PL,v 2.24 2021/10/13 08:29:13 dankogai Exp dankogai $
#
use 5.007003;
use strict;
Expand All @@ -20,7 +20,7 @@ if (!$ENV{PERL_CORE}) {
$gccver =~ s/\.//g; $gccver =~ s/ .*//;
$gccver .= "0" while length $gccver < 3;
$gccver = 0+$gccver;
$ccflags .= ' -Werror=declaration-after-statement' if $gccver > 412;
$ccflags .= ' -Werror=declaration-after-statement' if $gccver > 412 and $] < 5.035005;
$ccflags .= ' -Wpointer-sign' if !$Config{d_cplusplus} and $gccver > 400;
$ccflags .= ' -fpermissive' if $Config{d_cplusplus};
}
Expand Down

0 comments on commit 079dcbe

Please sign in to comment.