'ExtUtils::CBuilder' =>
{
'MAINTAINER' => 'kwilliams',
- 'DISTRIBUTION' => 'DAGOLDEN/ExtUtils-CBuilder-0.2602.tar.gz',
+ 'DISTRIBUTION' => 'DAGOLDEN/ExtUtils-CBuilder-0.260301.tar.gz',
'FILES' => q[cpan/ExtUtils-CBuilder],
- 'EXCLUDED' => [ qw{devtools} ],
'CPAN' => 1,
'UPSTREAM' => 'cpan',
},
Revision history for Perl extension ExtUtils::CBuilder.
+0.260301 - Sat Aug 29 11:04:41 EDT 2009
+
+ Bugs fixed:
+ - Fixed linking error on Win32 with gcc compiler (RT#49000)
+ [kmx]
+
+0.2603 - Sat Jul 18 06:56:06 EDT 2009
+
+ Bugs fixed:
+ - Makefile.PL had wrong INSTALLDIRS setting for older Perls
+ (RT#47985) [David Golden]
+
0.2602 - Sat Jul 4 10:57:12 EDT 2009
Bugs fixed:
use File::Basename ();
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
$VERSION = eval $VERSION;
# Okay, this is the brute-force method of finding out what kind of
use IO::File;
use vars qw($VERSION);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
sub new {
my $class = shift;
use ExtUtils::CBuilder::Base;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Base);
sub link_executable {
use ExtUtils::CBuilder::Base;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Base);
use File::Spec::Functions qw(catfile catdir);
use IO::File;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Base);
sub new {
@{delete $spec{perllibs} || []},
) . ")\n";
- push @{$spec{other_ldflags}}, '"' . $script . '"';
+ #it is important to keep the order 1.linker_script - 2.other_ldflags
+ @{$spec{other_ldflags}} = ( '"' . $script . '"', @{$spec{other_ldflags}} );
return %spec;
}
use File::Spec;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
sub need_prelink { 1 }
use ExtUtils::CBuilder::Platform::Unix;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
sub link_executable {
use ExtUtils::CBuilder::Platform::Unix;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
sub compile {
use vars qw($VERSION @ISA);
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
sub link_executable {
my $self = shift;
use ExtUtils::CBuilder::Platform::Unix;
use vars qw($VERSION @ISA);
-$VERSION = '0.2602';
+$VERSION = '0.260301';
@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
sub need_prelink { 1 }