Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
ExtUtils /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxr-xr-x
2021-08-24 17:00
Liblist
[ DIR ]
drwxr-xr-x
2021-08-24 17:00
MakeMaker
[ DIR ]
drwxr-xr-x
2021-08-24 17:00
ParseXS
[ DIR ]
drwxr-xr-x
2021-08-24 17:00
Typemaps
[ DIR ]
drwxr-xr-x
2021-08-24 17:00
Liblist.pm
9.47
KB
-rw-r--r--
2014-06-10 06:28
MANIFEST.SKIP
824
B
-rw-r--r--
2012-09-11 18:55
MM.pm
2.06
KB
-rw-r--r--
2013-06-15 02:56
MM_AIX.pm
1.53
KB
-rw-r--r--
2013-06-15 02:56
MM_Any.pm
68.58
KB
-rw-r--r--
2013-06-15 02:56
MM_BeOS.pm
982
B
-rw-r--r--
2013-06-15 02:56
MM_Cygwin.pm
3.04
KB
-rw-r--r--
2013-06-15 02:56
MM_DOS.pm
950
B
-rw-r--r--
2013-06-15 02:56
MM_Darwin.pm
918
B
-rw-r--r--
2013-06-15 02:56
MM_MacOS.pm
1.08
KB
-rw-r--r--
2013-06-15 02:56
MM_NW5.pm
6.41
KB
-rw-r--r--
2013-06-15 02:56
MM_OS2.pm
3.75
KB
-rw-r--r--
2013-06-15 02:56
MM_QNX.pm
868
B
-rw-r--r--
2013-06-15 02:56
MM_UWIN.pm
955
B
-rw-r--r--
2013-06-15 02:56
MM_Unix.pm
91.82
KB
-rw-r--r--
2014-06-10 06:28
MM_VMS.pm
59.65
KB
-rw-r--r--
2013-06-15 02:56
MM_VOS.pm
723
B
-rw-r--r--
2013-06-15 02:56
MM_Win32.pm
13.85
KB
-rw-r--r--
2013-06-15 02:56
MM_Win95.pm
1.87
KB
-rw-r--r--
2013-06-15 02:56
MY.pm
652
B
-rw-r--r--
2013-06-15 02:56
MakeMaker.pm
91.59
KB
-rw-r--r--
2014-06-10 06:28
Manifest.pm
22.52
KB
-rw-r--r--
2012-09-11 18:55
Mkbootstrap.pm
3.11
KB
-rw-r--r--
2013-06-15 02:56
Mksymlists.pm
10.5
KB
-rw-r--r--
2013-06-15 02:56
ParseXS.pm
60.01
KB
-rw-r--r--
2012-11-19 10:01
ParseXS.pod
3.74
KB
-rw-r--r--
2012-01-28 15:21
Typemaps.pm
24.81
KB
-rw-r--r--
2017-08-02 10:13
testlib.pm
891
B
-rw-r--r--
2013-06-15 02:56
xsubpp
4.45
KB
-rwxr-xr-x
2017-08-02 10:13
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 = '6.68'; =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_ARCHIVE_AFTER} ||= ''; $self->{EXPORT_LIST} ||= ''; } =back 1; __END__