- Updated servers used for testing in examples and tests
[Net-HTTPS-Any.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Net::HTTPS::Any',
7     AUTHOR              => 'Ivan Kohler <ivan-net-https-any@freeside.biz>',
8     VERSION_FROM        => 'lib/Net/HTTPS/Any.pm',
9     ABSTRACT_FROM       => 'lib/Net/HTTPS/Any.pm',
10     PL_FILES            => {},
11     PREREQ_PM => {
12         'Test::More'  => 0,
13         'URI::Escape' => 0,
14         'Tie::IxHash' => 0,
15         # If you are aware of a way to declare an OR relation in prerequisites,
16         # please tell me, you would be my hero.  it doesn't have to be EU:MM.
17         # 'Net::SSLeay' => 0,
18         # or 'Crypt::SSLeay' => 0,
19         #    'LWP' => 0,
20     },
21     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
22     clean               => { FILES => 'Net-HTTPS-Any-*' },
23 );