Skip to content

Commit 915d432

Browse files
committed
Also requires ConfigureRequires for Crypt::OpenSSL::Guess
1 parent eb3a259 commit 915d432

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

Makefile.PL

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ my %WriteMakefileArgs = (
5959
"Crypt::OpenSSL::Guess" => 0
6060
},
6161
"CONFIGURE_REQUIRES" => {
62+
"Crypt::OpenSSL::Guess" => 0,
6263
"ExtUtils::MakeMaker" => 0
6364
},
6465
"DISTNAME" => "Crypt-OpenSSL-ConfiguredAPI",
@@ -73,7 +74,7 @@ my %WriteMakefileArgs = (
7374
"Crypt::OpenSSL::Guess" => 0,
7475
"Test::More" => 0
7576
},
76-
"VERSION" => "0.02",
77+
"VERSION" => "0.03",
7778
"test" => {
7879
"TESTS" => "t/*.t"
7980
}

cpanfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on 'test' => sub {
1515
};
1616

1717
on 'configure' => sub {
18+
requires "Crypt::OpenSSL::Guess" => "0";
1819
requires "ExtUtils::MakeMaker" => "0";
1920
};
2021

dist.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ skip = base
2525
[Prereqs / BuildRequires]
2626
Crypt::OpenSSL::Guess = 0
2727

28+
[Prereqs / ConfigureRequires]
29+
Crypt::OpenSSL::Guess = 0
30+
2831
[Prereqs / RuntimeRequires]
2932
perl = 5.014
3033

lib/Crypt/OpenSSL/ConfiguredAPI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use warnings;
77

88
require Exporter;
99

10-
our $VERSION = "0.02";
10+
our $VERSION = "0.03";
1111

1212
our @ISA = qw(Exporter);
1313

0 commit comments

Comments
 (0)