Skip Menu |

This queue is for tickets about the Data-Structure-Compare CPAN distribution.

Report information
The Basics
Id: 107107
Status: new
Priority: 0/
Queue: Data-Structure-Compare

People
Owner: Nobody in particular
Requestors: gsullivan [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: Error: Can't locate JSON.pm in @INC
Most tests for version 0.03 fail: http://matrix.cpantesters.org/?dist=data_structure_compare+0.03 This is a common error message: Bailout called. Further testing stopped: # Failed test 'use Data::Structure::Compare;' # at t/00-load.t line 6. # Tried to use 'Data::Structure::Compare'. # Error: Can't locate JSON.pm in @INC (@INC contains: ... I believe the enclosed patch to file Build.PL should fix this problem.
Subject: diff-u.txt
--- ../Data-Structure-Compare-0.03.orig/Build.PL 2012-09-06 11:16:41.000000000 -0400 +++ Build.PL 2015-09-15 10:11:00.153427000 -0400 @@ -10,6 +10,7 @@ dist_version_from => 'lib/Data/Structure/Compare.pm', build_requires => { 'Test::More' => 0, + 'JSON' => 0, }, requires => { 'perl' => 5.006,
On second thought, maybe the JSON line would be better in the "requires" section than in the "build_requires".