From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
— — — — |
our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix ) ;
our $VERSION = '7.72' ;
$VERSION =~ tr /_//d;
sub os_flavor {
return ( 'BeOS' );
}
sub init_linker {
my ( $self ) = shift ;
$self ->{PERL_ARCHIVE} ||=
File::Spec->catdir( '$(PERL_INC)' , $Config {libperl});
$self ->{PERL_ARCHIVEDEP} ||= '' ;
$self ->{PERL_ARCHIVE_AFTER} ||= '' ;
$self ->{EXPORT_LIST} ||= '' ;
}
1;
|