/usr/local/share/perl5/ExtUtils/CBuilder/Platform
NameSizeModeActions
Windows/-0755rm
aix.pm6600444editdlrm
android.pm12550444editdlrm
cygwin.pm9700444editdlrm
darwin.pm5580444editdlrm
dec_osf.pm4670444editdlrm
os2.pm24460444editdlrm
Unix.pm10820444editdlrm
VMS.pm103230444editdlrm
Windows.pm89920444editdlrm
Edit: /usr/local/share/perl5/ExtUtils/CBuilder/Platform/darwin.pm (558B)
package ExtUtils::CBuilder::Platform::darwin; $ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280224'; use warnings; use strict; use ExtUtils::CBuilder::Platform::Unix; use vars qw(@ISA); @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;