Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
share /
perl5 /
ExtUtils /
Delete
Unzip
Name
Size
Permission
Date
Action
CBuilder
[ DIR ]
drwxr-xr-x
2019-04-03 18:18
Command
[ DIR ]
drwxr-xr-x
2019-06-17 23:11
Liblist
[ DIR ]
drwxr-xr-x
2019-06-17 23:11
MakeMaker
[ DIR ]
drwxr-xr-x
2019-06-17 23:11
ParseXS
[ DIR ]
drwxr-xr-x
2019-04-03 18:18
Typemaps
[ DIR ]
drwxr-xr-x
2019-04-03 18:18
CBuilder.pm
8.67
KB
-r--r--r--
2019-03-31 11:54
Command.pm
7.61
KB
-r--r--r--
2019-04-28 17:32
Install.pm
39.63
KB
-r--r--r--
2019-06-17 23:11
Installed.pm
14.03
KB
-r--r--r--
2019-06-17 23:11
Liblist.pm
9.27
KB
-r--r--r--
2019-04-28 17:32
MANIFEST.SKIP
971
B
-r--r--r--
2019-06-17 23:11
MM.pm
2.08
KB
-r--r--r--
2019-04-28 17:32
MM_AIX.pm
1.44
KB
-r--r--r--
2019-04-28 17:32
MM_Any.pm
80.9
KB
-r--r--r--
2019-04-28 17:32
MM_BeOS.pm
1.02
KB
-r--r--r--
2019-04-28 17:32
MM_Cygwin.pm
3.99
KB
-r--r--r--
2019-04-28 17:32
MM_DOS.pm
1.02
KB
-r--r--r--
2019-04-28 17:32
MM_Darwin.pm
931
B
-r--r--r--
2019-04-28 17:32
MM_MacOS.pm
887
B
-r--r--r--
2019-04-28 17:32
MM_NW5.pm
5.33
KB
-r--r--r--
2019-04-28 17:32
MM_OS2.pm
3.14
KB
-r--r--r--
2019-04-28 17:32
MM_QNX.pm
889
B
-r--r--r--
2019-04-28 17:32
MM_UWIN.pm
976
B
-r--r--r--
2019-04-28 17:32
MM_Unix.pm
111.52
KB
-r--r--r--
2019-04-28 17:32
MM_VMS.pm
66.6
KB
-r--r--r--
2019-04-28 17:32
MM_VOS.pm
744
B
-r--r--r--
2019-04-28 17:32
MM_Win32.pm
14.32
KB
-r--r--r--
2019-04-28 17:32
MM_Win95.pm
1.25
KB
-r--r--r--
2019-04-28 17:32
MY.pm
673
B
-r--r--r--
2019-04-28 17:32
MakeMaker.pm
106.18
KB
-r--r--r--
2019-04-28 17:32
Manifest.pm
22.89
KB
-r--r--r--
2019-06-17 23:11
Mkbootstrap.pm
3.22
KB
-r--r--r--
2019-04-28 17:32
Mksymlists.pm
10.74
KB
-r--r--r--
2019-04-28 17:32
Packlist.pm
8.36
KB
-r--r--r--
2019-06-17 23:11
ParseXS.pm
65.01
KB
-r--r--r--
2017-07-31 17:46
ParseXS.pod
4.3
KB
-r--r--r--
2017-07-31 17:46
Typemaps.pm
26.17
KB
-r--r--r--
2017-07-31 17:46
testlib.pm
911
B
-r--r--r--
2019-04-28 17:32
xsubpp
4.95
KB
-r--r--r--
2017-07-31 17:46
Save
Rename
package ExtUtils::MM_BeOS; use strict; =head1 NAME ExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker =head1 SYNOPSIS use ExtUtils::MM_BeOS; # Done internally by ExtUtils::MakeMaker if needed =head1 DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. =over 4 =cut use ExtUtils::MakeMaker::Config; use File::Spec; require ExtUtils::MM_Any; require ExtUtils::MM_Unix; our @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix ); our $VERSION = '7.36'; $VERSION =~ tr/_//d; =item os_flavor BeOS is BeOS. =cut sub os_flavor { return('BeOS'); } =item init_linker libperl.a equivalent to be linked to dynamic extensions. =cut 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} ||= ''; } =back =cut 1; __END__