Skip to content

Commit fcacab0

Browse files
ambsjkeenan
authored andcommitted
Update EU::CBuilder to 0.280231
Committer: additional email address for contributor
1 parent 455565b commit fcacab0

File tree

15 files changed

+21
-13
lines changed

15 files changed

+21
-13
lines changed

Porting/checkAUTHORS.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,7 @@ sub _raw_address {
527527
+ nort\100qnx.com
528528
allens\100cpan.org easmith\100beatrice.rutgers.edu
529529
+ root\100dogberry.rutgers.edu
530+
ambs\100cpan.org hashashin\100gmail.com
530531
andreas.koenig\100anima.de andreas.koenig.gmwojprw\100franz.ak.mind.de
531532
+ andreas.koenig.7os6vvqr\100franz.ak.mind.de
532533
+ a.koenig\100mind.de

dist/ExtUtils-CBuilder/Changes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Revision history for Perl extension ExtUtils::CBuilder.
22

3+
0.280231 - 2019-03-31
4+
5+
Fixed:
6+
7+
- Protected RE interpolation in Base.pm
8+
9+
310
0.280230 - 2017-11-22
411

512
Fixed:

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use Perl::OSType qw/os_type/;
77

88
use warnings;
99
use strict;
10-
our $VERSION = '0.280230'; # VERSION
10+
our $VERSION = '0.280231'; # VERSION
1111
our @ISA;
1212

1313
# We only use this once - don't waste a symbol table entry on it.

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Unix.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use strict;
55
use ExtUtils::CBuilder::Base;
66

7-
our $VERSION = '0.280230'; # VERSION
7+
our $VERSION = '0.280231'; # VERSION
88
our @ISA = qw(ExtUtils::CBuilder::Base);
99

1010
sub link_executable {

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/VMS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use strict;
55
use ExtUtils::CBuilder::Base;
66

7-
our $VERSION = '0.280230'; # VERSION
7+
our $VERSION = '0.280231'; # VERSION
88
our @ISA = qw(ExtUtils::CBuilder::Base);
99

1010
use File::Spec::Functions qw(catfile catdir);

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use File::Spec;
88
use ExtUtils::CBuilder::Base;
99
use IO::File;
1010

11-
our $VERSION = '0.280230'; # VERSION
11+
our $VERSION = '0.280231'; # VERSION
1212
our @ISA = qw(ExtUtils::CBuilder::Base);
1313

1414
=begin comment

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ExtUtils::CBuilder::Platform::Windows::BCC;
22

3-
our $VERSION = '0.280230'; # VERSION
3+
our $VERSION = '0.280231'; # VERSION
44

55
use strict;
66
use warnings;

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ExtUtils::CBuilder::Platform::Windows::GCC;
22

3-
our $VERSION = '0.280230'; # VERSION
3+
our $VERSION = '0.280231'; # VERSION
44

55
use warnings;
66
use strict;

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package ExtUtils::CBuilder::Platform::Windows::MSVC;
22

3-
our $VERSION = '0.280230'; # VERSION
3+
our $VERSION = '0.280231'; # VERSION
44

55
use warnings;
66
use strict;

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/aix.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use ExtUtils::CBuilder::Platform::Unix;
66
use File::Spec;
77

8-
our $VERSION = '0.280230'; # VERSION
8+
our $VERSION = '0.280231'; # VERSION
99
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
1010

1111
sub need_prelink { 1 }

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/android.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use File::Spec;
66
use ExtUtils::CBuilder::Platform::Unix;
77
use Config;
88

9-
our $VERSION = '0.280230'; # VERSION
9+
our $VERSION = '0.280231'; # VERSION
1010
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
1111

1212
# The Android linker will not recognize symbols from

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/cygwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use File::Spec;
66
use ExtUtils::CBuilder::Platform::Unix;
77

8-
our $VERSION = '0.280230'; # VERSION
8+
our $VERSION = '0.280231'; # VERSION
99
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
1010

1111
# TODO: If a specific exe_file name is requested, if the exe created

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/darwin.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use strict;
55
use ExtUtils::CBuilder::Platform::Unix;
66

7-
our $VERSION = '0.280230'; # VERSION
7+
our $VERSION = '0.280231'; # VERSION
88
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
99

1010
sub compile {

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/dec_osf.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use ExtUtils::CBuilder::Platform::Unix;
66
use File::Spec;
77

8-
our $VERSION = '0.280230'; # VERSION
8+
our $VERSION = '0.280231'; # VERSION
99
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
1010

1111
sub link_executable {

dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/os2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use strict;
55
use ExtUtils::CBuilder::Platform::Unix;
66

7-
our $VERSION = '0.280230'; # VERSION
7+
our $VERSION = '0.280231'; # VERSION
88
our @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
99

1010
sub need_prelink { 1 }

0 commit comments

Comments
 (0)