summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-05-12 16:16:43 -0700
committerIvan Kohler <ivan@freeside.biz>2014-05-12 16:16:43 -0700
commit5426737664dd0fd517c2f4f931fa04852e95d1ca (patch)
treeba1ad336bd98bdba0e17b6023a579d9f96f1d927 /Makefile.PL
parent90a8f96bb101dc637ad436de3c3ab161cc5000d9 (diff)
Depend on Net::SSLeay and test on it (and not Crypt::SSLeay), to
eliminate spurious test failures and increase installability. Alas, but the last four years have not provided OR relationships in CPAN dependencies.
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 2fe34d0..3181e4a 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -17,6 +17,11 @@ WriteMakefile(
# 'Net::SSLeay' => 0,
# or 'Crypt::SSLeay' => 0,
# 'LWP' => 0,
+
+ #failing tests is worse, Net::SSLeay appears to finally have emerged
+ # as best-practice with the release of LWP::Protocol::https that uses
+ # IO::Socket::SSL and therefore Net::SSLeay
+ 'Net::SSLeay' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Net-HTTPS-Any-*' },