From 88778bafe3fd5dfdb206ff1c2c3999c5dcd38375 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Mon, 13 Aug 2012 18:16:27 -0400 Subject: [PATCH] Bug 8636: Add missing dependencies Cache::Memcached::Fast is used for caching Test::YAML::Valid is used for tests Signed-off-by: Marc Veron Dependencies appear as expected... ...and I see that they are not instaled yet on my server :-) Signed-off-by: Jonathan Druart --- C4/Installer/PerlDependencies.pm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/C4/Installer/PerlDependencies.pm b/C4/Installer/PerlDependencies.pm index a9c68a8..6b1bb4b 100644 --- a/C4/Installer/PerlDependencies.pm +++ b/C4/Installer/PerlDependencies.pm @@ -249,6 +249,11 @@ our $PERL_DEPS = { 'required' => '0', 'min_ver' => '0.03' }, + 'Cache::Memcached::Fast' => { + 'usage' => 'Caching', + 'required' => '0', + 'min_ver' => '0.17' + }, 'CHI' => { 'usage' => 'Caching', 'required' => '0', @@ -580,6 +585,11 @@ our $PERL_DEPS = { 'min_ver' => '0.14', }, + 'Test::YAML::Valid' => { + 'usage' => 'Core', + 'required' => '0', + 'min_ver' => '0.04', + }, 'Text::Unaccent' => { 'usage' => 'Core', 'required' => '1', -- 1.7.10.4