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,