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 /
dist /
Storable /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:40
hints
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
ChangeLog
31.2
KB
-r--r--r--
2014-12-27 11:49
Makefile
29.38
KB
-rw-r--r--
2016-10-10 17:40
Makefile.PL
1.45
KB
-r--r--r--
2014-12-27 11:48
README
4.38
KB
-r--r--r--
2014-12-27 11:48
Storable.bs
0
B
-rw-r--r--
2016-10-10 17:41
Storable.c
185.67
KB
-rw-r--r--
2016-10-10 17:40
Storable.o
112.87
KB
-rw-r--r--
2016-10-10 17:40
Storable.pm
42.13
KB
-r--r--r--
2015-01-15 22:12
Storable.xs
177.74
KB
-r--r--r--
2014-12-27 11:49
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:40
Save
Rename
# # Copyright (c) 1995-2000, Raphael Manfredi # # You may redistribute only under the same terms as Perl 5, as specified # in the README file that comes with the distribution. # use ExtUtils::MakeMaker; use Config; WriteMakefile( NAME => 'Storable', DISTNAME => "Storable", # We now ship this in t/ # PREREQ_PM => { 'Test::More' => '0.41' }, PREREQ_PM => { XSLoader => 0 }, INSTALLDIRS => ($] >= 5.007 && $] < 5.012) ? 'perl' : 'site', VERSION_FROM => 'Storable.pm', ($ExtUtils::MakeMaker::VERSION > 6.45 ? (META_MERGE => { resources => { bugtracker => 'http://rt.perl.org/perlbug/' } }, ) : ()), dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, ); my $ivtype = $Config{ivtype}; # I don't know if the VMS folks ever supported long long on 5.6.x if ($ivtype and $ivtype eq 'long long' and $^O !~ /^MSWin/) { print <<'EOM'; You appear to have a perl configured to use 64 bit integers in its scalar variables. If you have existing data written with an earlier version of Storable which this version of Storable refuses to load with a Byte order is not compatible error, then please read the section "64 bit data in perl 5.6.0 and 5.6.1" in the Storable documentation for instructions on how to read your data. (You can find the documentation at the end of Storable.pm in POD format) EOM }