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 /
Compress-Raw-Bzip2 /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:38
bzip2-src
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
fallback
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
private
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Bzip2.bs
0
B
-rw-r--r--
2016-10-10 17:41
Bzip2.c
44.3
KB
-rw-r--r--
2016-10-10 17:38
Bzip2.o
43.35
KB
-rw-r--r--
2016-10-10 17:38
Bzip2.xs
22.43
KB
-r--r--r--
2014-12-27 11:48
Makefile
30.48
KB
-rw-r--r--
2016-10-10 17:38
Makefile.PL
3.93
KB
-r--r--r--
2014-12-27 11:48
blocksort.c
29.97
KB
-rw-r--r--
2016-10-10 17:38
blocksort.o
10.81
KB
-rw-r--r--
2016-10-10 17:38
bzlib.c
45.14
KB
-rw-r--r--
2016-10-10 17:38
bzlib.h
6.1
KB
-rw-r--r--
2016-10-10 17:38
bzlib.o
10.95
KB
-rw-r--r--
2016-10-10 17:38
bzlib_private.h
12.93
KB
-rw-r--r--
2016-10-10 17:38
compress.c
20.08
KB
-rw-r--r--
2016-10-10 17:38
compress.o
17.62
KB
-rw-r--r--
2016-10-10 17:38
constants.h
7.07
KB
-rw-r--r--
2016-10-10 17:38
constants.xs
2.59
KB
-rw-r--r--
2016-10-10 17:38
crctable.c
4.71
KB
-rw-r--r--
2016-10-10 17:38
crctable.o
1.96
KB
-rw-r--r--
2016-10-10 17:38
decompress.c
20.46
KB
-rw-r--r--
2016-10-10 17:38
decompress.o
12.81
KB
-rw-r--r--
2016-10-10 17:38
huffman.c
6.83
KB
-rw-r--r--
2016-10-10 17:38
huffman.o
3.24
KB
-rw-r--r--
2016-10-10 17:38
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:38
randtable.c
3.77
KB
-rw-r--r--
2016-10-10 17:38
randtable.o
2.95
KB
-rw-r--r--
2016-10-10 17:38
typemap
1.05
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#! perl -w use strict ; require 5.006 ; use private::MakeUtil; use ExtUtils::MakeMaker 5.16 ; my $WALL= ''; $WALL = ' -Wall -Wno-comment ' if $Config{'cc'} =~ /gcc/ ; my $USE_PPPORT_H = ($ENV{PERL_CORE}) ? '' : '-DUSE_PPPORT_H'; my $BUILD_BZIP2 = defined($ENV{BUILD_BZIP2}) ? $ENV{BUILD_BZIP2} : 1; my $BZIP2_LIB = defined($ENV{BZIP2_LIB}) ? $ENV{BZIP2_LIB} : 'bzip2-src'; my $BZIP2_INCLUDE = defined($ENV{BZIP2_INCLUDE}) ? $ENV{BZIP2_INCLUDE} : '.'; #ParseCONFIG() ; UpDowngrade(getPerlFiles('MANIFEST')) unless $ENV{PERL_CORE}; WriteMakefile( NAME => 'Compress::Raw::Bzip2', VERSION_FROM => 'lib/Compress/Raw/Bzip2.pm', INC => "-I$BZIP2_INCLUDE" , DEFINE => "$WALL -DBZ_NO_STDIO $USE_PPPORT_H" , XS => { 'Bzip2.xs' => 'Bzip2.c'}, 'clean' => { FILES => '*.c bzip2.h bzlib.h bzlib_private.h constants.h constants.xs' }, #'depend' => { 'Makefile' => 'config.in' }, 'dist' => { COMPRESS => 'gzip', TARFLAGS => '-chvf', SUFFIX => 'gz', DIST_DEFAULT => 'MyTrebleCheck tardist', }, ( $BUILD_BZIP2 ? bzip2_files($BZIP2_LIB) : (LIBS => [ "-L$BZIP2_LIB -lbz2 " ]) ), ( $] >= 5.005 ? (ABSTRACT_FROM => 'lib/Compress/Raw/Bzip2.pm', AUTHOR => 'Paul Marquess <pmqs@cpan.org>') : () ), INSTALLDIRS => ($] > 5.010 && $] < 5.011 ? 'perl' : 'site'), META_MERGE => { no_index => { directory => [ 't', 'private' ], }, }, ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? ('LICENSE' => 'perl') : ()), ) ; my @names = qw( BZ_RUN BZ_FLUSH BZ_FINISH BZ_OK BZ_RUN_OK BZ_FLUSH_OK BZ_FINISH_OK BZ_STREAM_END BZ_SEQUENCE_ERROR BZ_PARAM_ERROR BZ_MEM_ERROR BZ_DATA_ERROR BZ_DATA_ERROR_MAGIC BZ_IO_ERROR BZ_UNEXPECTED_EOF BZ_OUTBUFF_FULL BZ_CONFIG_ERROR ); if (eval {require ExtUtils::Constant; 1}) { # Check the constants above all appear in @EXPORT in Bzip2.pm my %names = map { $_, 1} @names ; #, 'BZ_VERSION'; open F, "<lib/Compress/Raw/Bzip2.pm" or die "Cannot open Bzip2.pm: $!\n"; while (<F>) { last if /^\s*\@EXPORT\s+=\s+qw\(/ ; } while (<F>) { last if /^\s*\)/ ; /(\S+)/ ; delete $names{$1} if defined $1 ; } close F ; if ( keys %names ) { my $missing = join ("\n\t", sort keys %names) ; die "The following names are missing from \@EXPORT in Bzip2.pm\n" . "\t$missing\n" ; } #push @names, {name => 'BZ_VERSION', type => 'PV' }; ExtUtils::Constant::WriteConstants( NAME => 'Bzip2', NAMES => \@names, C_FILE => 'constants.h', XS_FILE => 'constants.xs', ); } else { foreach my $name (qw( constants.h constants.xs )) { my $from = catfile('fallback', $name); copy ($from, $name) or die "Can't copy $from to $name: $!"; } } sub bzip2_files { my $dir = shift ; my @c_files = qw( blocksort.c huffman.c crctable.c randtable.c compress.c decompress.c bzlib.c ); my @h_files = qw( bzlib.h bzlib_private.h ); foreach my $file (@c_files, @h_files) { copy(catfile($dir, $file), '.') } @h_files = map { catfile($dir, $_) } @h_files ; my @o_files = map { "$_\$(OBJ_EXT)" } 'Bzip2', @c_files; push @c_files, 'Bzip2.c' ; return ( #'H' => [ @h_files ], 'C' => [ @c_files ] , #'OBJECT' => qq[ @o_files ], 'OBJECT' => q[ $(O_FILES) ], ) ; }