summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm')
-rw-r--r--chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm22
1 files changed, 0 insertions, 22 deletions
diff --git a/chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm b/chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm
deleted file mode 100644
index 3b0cfb4c596..00000000000
--- a/chromium/third_party/cygwin/lib/perl5/5.10/ExtUtils/CBuilder/Platform/darwin.pm
+++ /dev/null
@@ -1,22 +0,0 @@
-package ExtUtils::CBuilder::Platform::darwin;
-
-use strict;
-use ExtUtils::CBuilder::Platform::Unix;
-
-use vars qw($VERSION @ISA);
-$VERSION = '0.21';
-@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
-
-sub compile {
- my $self = shift;
- my $cf = $self->{config};
-
- # -flat_namespace isn't a compile flag, it's a linker flag. But
- # it's mistakenly in Config.pm as both. Make the correction here.
- local $cf->{ccflags} = $cf->{ccflags};
- $cf->{ccflags} =~ s/-flat_namespace//;
- $self->SUPER::compile(@_);
-}
-
-
-1;