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 /
ext /
SDBM_File /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:40
sdbm
[ DIR ]
drwxr-xr-x
2016-10-10 17:40
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
Makefile
29.94
KB
-rw-r--r--
2016-10-10 17:40
Makefile.PL
1.57
KB
-r--r--r--
2014-12-27 11:48
SDBM_File.bs
0
B
-rw-r--r--
2016-10-10 17:41
SDBM_File.c
15.21
KB
-rw-r--r--
2016-10-10 17:40
SDBM_File.o
24.19
KB
-rw-r--r--
2016-10-10 17:40
SDBM_File.pm
3.46
KB
-r--r--r--
2014-12-27 11:49
SDBM_File.xs
2.76
KB
-r--r--r--
2014-12-27 11:49
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:40
typemap
1016
B
-r--r--r--
2014-12-27 11:48
Save
Rename
use ExtUtils::MakeMaker; use Config; # The existence of the ./sdbm/Makefile.PL file causes MakeMaker # to automatically include Makefile code for the targets # config, all, clean, realclean and sdbm/Makefile # which perform the corresponding actions in the subdirectory. # Work around: Darwin ppc64 bug ignores archive contents when building bundles $define = ($^O eq 'MSWin32') ? '-DMSDOS' : ''; if ($^O eq 'MSWin32') { $myextlib = 'sdbm\\libsdbm$(LIB_EXT)'; } elsif ($^O eq 'darwin' && $Config{'ldflags'} =~/-arch ppc64/) { $myextlib = '-all_load sdbm/libsdbm$(LIB_EXT)'; } else { $myextlib = 'sdbm/libsdbm$(LIB_EXT)'; } WriteMakefile( NAME => 'SDBM_File', MYEXTLIB => $myextlib, XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'SDBM_File.pm', DEFINE => $define, ); # We don't want the default subdir rule, as it creates a race condition with the # rule we add below. sub MY::subdir_x { return ''; } sub MY::postamble { if ($^O =~ /MSWin32/ && !defined($ENV{SYSTEMROOT})) { if ($Config{'make'} =~ /dmake/i) { # dmake-specific return <<'EOT'; $(MYEXTLIB): sdbm/Makefile @[ cd sdbm $(MAKE) all cd .. ] EOT } elsif ($Config{'make'} =~ /nmake/i) { # return <<'EOT'; $(MYEXTLIB): sdbm/Makefile cd sdbm $(MAKE) all cd .. EOT } } elsif ($^O ne 'VMS') { ' $(MYEXTLIB): sdbm/Makefile cd sdbm && $(MAKE) all '; } else { ' $(MYEXTLIB) : [.sdbm]descrip.mms set def [.sdbm] $(MMS) all set def [-] '; } }