Skip to content

Commit cc199b5

Browse files
Bump ExtUtils::CBuilder version to 0.280642 after fix
1 parent 1f54ecd commit cc199b5

File tree

16 files changed

+32
-15
lines changed

16 files changed

+32
-15
lines changed

dist/ExtUtils-CBuilder/Changes

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

3+
0.280642
4+
5+
Fix:
6+
7+
- account for possibility of envvar $CC being defined
8+
https://github.com/Perl/perl5/issues/23355
9+
10+
0.280641
11+
12+
Fix:
13+
14+
- finding the correct cplusplus compiler
15+
16+
0.280240
17+
18+
- make ExtUtils::CBuilder throw an exception on Windows on linker errors
19+
320
0.280239
421

522
- make the definition of boot_compilet() in the probe code generated

dist/ExtUtils-CBuilder/Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
2929
"TEST_REQUIRES" => {
3030
"Test::More" => "0.47"
3131
},
32-
"VERSION" => "0.280235",
32+
"VERSION" => "0.280242",
3333
"test" => {
3434
"TESTS" => "t/*.t"
3535
}

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.280241'; # VERSION
10+
our $VERSION = '0.280242'; # 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/Base.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use Text::ParseWords;
99
use IPC::Cmd qw(can_run);
1010
use File::Temp qw(tempfile);
1111

12-
our $VERSION = '0.280241'; # VERSION
12+
our $VERSION = '0.280242'; # VERSION
1313

1414
# More details about C/C++ compilers:
1515
# http://developers.sun.com/sunstudio/documentation/product/compiler.jsp

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.280241'; # VERSION
7+
our $VERSION = '0.280242'; # 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.280241'; # VERSION
7+
our $VERSION = '0.280242'; # 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.280241'; # VERSION
11+
our $VERSION = '0.280242'; # 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.280241'; # VERSION
3+
our $VERSION = '0.280242'; # 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.280241'; # VERSION
3+
our $VERSION = '0.280242'; # 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.280241'; # VERSION
3+
our $VERSION = '0.280242'; # VERSION
44

55
use warnings;
66
use strict;

0 commit comments

Comments
 (0)