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
use strict; unless (@ARGV) { @ARGV = qw( constants ); } my %gen = map { ($_ => 1) } @ARGV; if (delete $gen{constants}) { make_constants(); } for my $key (keys %gen) { print STDERR "Invalid request to regenerate $key!\n"; } sub make_constants { unless (eval { require ExtUtils::Constant; 1 }) { my @files = qw( const-c.inc const-xs.inc ); die "Cannot regenerate constants:\n$@\n" if grep { !-f } @files; my @deps = qw( regen.pl lib/IPC/SysV.pm ); my $oldage = (sort { $a <=> $b } map { -M } @files)[-1]; # age of oldest file my $depage = (sort { $a <=> $b } map { -M } @deps)[0]; # age of newest dependency my @outdated = grep { (-M) > $depage } @files; my @newdeps = grep { (-M) < $oldage } @deps; print STDERR <<EOM if @outdated; *********************************************************************** The following files seem to be out of date: @outdated The reason is probably that you modified these files: @newdeps If you're absolutely sure you didn't touch the files, please ignore this message. Otherwise, please install the ExtUtils::Constant module. *********************************************************************** EOM exit 0; # will build anyway, since the files exist } my $source = 'lib/IPC/SysV.pm'; local $_; local *SYSV; open SYSV, $source or die "$source: $!\n"; my $parse = 0; my @const; while (<SYSV>) { if ($parse) { if (/^\)/) { $parse++; last } push @const, split; } /^\@EXPORT_OK\s*=/ and $parse++; } close SYSV; die "couldn't parse $source" if $parse != 2; eval { ExtUtils::Constant::WriteConstants( NAME => 'IPC::SysV', NAMES => \@const, XS_FILE => 'const-xs.inc', C_FILE => 'const-c.inc', XS_SUBNAME => '_constant', ); }; if ($@) { my $err = "Cannot regenerate constants:\n$@\n"; if ($] < 5.006) { print STDERR $err; exit 0; } die $err; } print "Writing const-xs.inc\n"; print "Writing const-c.inc\n"; }