Fixed rt.cpan.org#123087: add IO::Socket::SSL as dependency.

This commit is contained in:
Thomas von Dein
2017-09-21 07:29:37 +02:00
parent b3b84c6b20
commit 79f3da4add
4 changed files with 8 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2.02:
Fixed rt.cpan.org#123087: add IO::Socket::SSL as dependency.
2.01: 2.01:
dict.leo.org now forces SSL via Cloudflare, we follow suit. dict.leo.org now forces SSL via Cloudflare, we follow suit.

View File

@@ -1,5 +1,5 @@
# #
# made for WWW::Dict::Leo::Org 1.33 and up # made for WWW::Dict::Leo::Org 2.01 and up
use ExtUtils::MakeMaker; use ExtUtils::MakeMaker;
@@ -10,7 +10,7 @@ WriteMakefile(
'clean' => { FILES => '*~' }, 'clean' => { FILES => '*~' },
'EXCLUDE_EXT' => [ qw(README) ], 'EXCLUDE_EXT' => [ qw(README) ],
'PREREQ_PM' => { 'Carp::Heavy' => 0, 'PREREQ_PM' => { 'Carp::Heavy' => 0,
'IO::Socket' => 0, 'IO::Socket::SSL' => 0,
'MIME::Base64' => 0, 'MIME::Base64' => 0,
'XML::Simple' => 0 'XML::Simple' => 0
} }

2
Org.pm
View File

@@ -7,7 +7,7 @@
# or service marks of their respective holders. # or service marks of their respective holders.
package WWW::Dict::Leo::Org; package WWW::Dict::Leo::Org;
$WWW::Dict::Leo::Org::VERSION = "2.01"; $WWW::Dict::Leo::Org::VERSION = "2.02";
use strict; use strict;
use warnings; use warnings;

2
leo
View File

@@ -33,7 +33,7 @@ my $default_c = "\033[0m"; # reset default terminal color
my $bold_c = "\033[0;34m"; # blue color my $bold_c = "\033[0;34m"; # blue color
my $copy_c = "\033[0;35m"; # copyright message color (green) my $copy_c = "\033[0;35m"; # copyright message color (green)
my $version = "2.01"; my $version = "2.02";
my $config = $ENV{HOME} . "/.leo"; my $config = $ENV{HOME} . "/.leo";
my $cache = $ENV{HOME} . "/.leo-CACHE.db"; my $cache = $ENV{HOME} . "/.leo-CACHE.db";