Revert "Roll NDK to r11c and extract it into its own repository."
[android_tools.git] / ndk / prebuilt / linux-x86_64 / lib / perl5 / 5.16.2 / ExtUtils / MM_BeOS.pm
bloba31cf2320c31ce052b65066110e8d745ee81e5e2
1 package ExtUtils::MM_BeOS;
3 use strict;
5 =head1 NAME
7 ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker
9 =head1 SYNOPSIS
11 use ExtUtils::MM_BeOS; # Done internally by ExtUtils::MakeMaker if needed
13 =head1 DESCRIPTION
15 See ExtUtils::MM_Unix for a documentation of the methods provided
16 there. This package overrides the implementation of these methods, not
17 the semantics.
19 =over 4
21 =cut
23 use ExtUtils::MakeMaker::Config;
24 use File::Spec;
25 require ExtUtils::MM_Any;
26 require ExtUtils::MM_Unix;
28 our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
29 our $VERSION = '6.63_02';
32 =item os_flavor
34 BeOS is BeOS.
36 =cut
38 sub os_flavor {
39 return('BeOS');
42 =item init_linker
44 libperl.a equivalent to be linked to dynamic extensions.
46 =cut
48 sub init_linker {
49 my($self) = shift;
51 $self->{PERL_ARCHIVE} ||=
52 File::Spec->catdir('$(PERL_INC)',$Config{libperl});
53 $self->{PERL_ARCHIVE_AFTER} ||= '';
54 $self->{EXPORT_LIST} ||= '';
57 =back
60 __END__