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 /
cpan /
Scalar-List-Utils /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:39
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
ListUtil.c
39.26
KB
-rw-r--r--
2016-10-10 17:39
ListUtil.o
57.77
KB
-rw-r--r--
2016-10-10 17:39
ListUtil.xs
24.06
KB
-r--r--r--
2014-12-27 11:49
Makefile
29.88
KB
-rw-r--r--
2016-10-10 17:39
Makefile.PL
1.41
KB
-r--r--r--
2014-12-27 11:48
Util.bs
0
B
-rw-r--r--
2016-10-10 17:41
multicall.h
4.49
KB
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:39
ppport.h
183
KB
-rw-r--r--
2016-10-10 17:38
Save
Rename
# -*- perl -*- BEGIN { require 5.006; } use strict; use warnings; use Config; use File::Spec; use ExtUtils::MakeMaker; my $PERL_CORE = grep { $_ eq 'PERL_CORE=1' } @ARGV; WriteMakefile( NAME => q[List::Util], ABSTRACT => q[Common Scalar and List utility subroutines], AUTHOR => q[Graham Barr <gbarr@cpan.org>], DEFINE => q[-DPERL_EXT], DISTNAME => q[Scalar-List-Utils], VERSION_FROM => 'lib/List/Util.pm', # We go through the ListUtil.xs trickery to foil platforms # that have the feature combination of # (1) static builds # (2) allowing only one object by the same name in the static library # (3) the object name matching being case-blind # This means that we can't have the top-level util.o # and the extension-level Util.o in the same build. # One such platform is the POSIX-BC BS2000 EBCDIC mainframe platform. XS => {'ListUtil.xs' => 'ListUtil.c'}, OBJECT => 'ListUtil$(OBJ_EXT)', ( $PERL_CORE ? () : ( INSTALLDIRS => ($] < 5.011 ? q[perl] : q[site]), PREREQ_PM => {'Test::More' => 0,}, (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()), ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? ( META_MERGE => { resources => { ## repository => 'https://github.com/Scalar-List-Utils/Scalar-List-Utils', }, } ) : () ), ) ), );