Skip to content

Commit 86d6a78

Browse files
committed
Fixed build issue missing requirements.
1 parent 3007bb0 commit 86d6a78

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.003001 2021-05-12
2+
- fixed Makefile.PL
3+
14
0.003 2021-05-08
25
- added Inline method for use with Inline::*
36
See POD for more info it's use.

Makefile.PL

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,16 @@ WriteMakefile(
2424
'ExtUtils::MakeMaker' => 0,
2525
'Devel::CheckLib' => 0,
2626
},
27+
BUILD_REQUIRES => {
28+
'ExtUtils::MakeMaker' => 0,
29+
'Devel::CheckLib' => 0,
30+
},
2731
TEST_REQUIRES => {
28-
'Test::More' => 0,
32+
'Test::More' => 0,
33+
'Devel::CheckLib' => 0,
2934
},
3035
PREREQ_PM => {
36+
'Test::More' => 0,
3137
'Devel::CheckLib' => 0,
3238
},
3339
META_MERGE => {
@@ -53,6 +59,8 @@ WriteMakefile(
5359
'Test::Pod' => '1.00',
5460
'Pod::Markdown' => 0,
5561
'Inline::C' => 0,
62+
'Devel::CheckLib' => 0,
63+
'Dist::Zilla' => 0,
5664
},
5765
},
5866
test => {

dist.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ skipfile = MANIFEST.SKIP
2222
[Prereqs / TestPrereqs]
2323
-phase = test
2424
Test::More = 0
25+
[Prereqs / BuildPrereqs]
26+
-phase = build
27+
Devel::CheckLib = 0
2528
[PruneCruft]
2629
[PruneFiles]
2730
filename = ^_Inline$

lib/Alien/OpenMP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use strict;
44
use warnings;
55
use Config ();
66

7-
our $VERSION = '0.003';
7+
our $VERSION = '0.003001';
88

99
# set as package variable since %Config::Config is read only, (per docs and in practice)
1010
our $CCNAME = $Config::Config{ccname};

0 commit comments

Comments
 (0)