@@ -, +, @@ --- C4/Installer/PerlDependencies.pm | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) --- a/C4/Installer/PerlDependencies.pm +++ a/C4/Installer/PerlDependencies.pm @@ -576,13 +576,20 @@ our $PERL_DEPS = { }, 'Test::Strict' => { 'usage' => 'Core', - 'required' => '0.14', + 'required' => '0', + 'min_ver' => '0.14', + }, 'Text::Unaccent' => { 'usage' => 'Core', 'required' => '1', 'min_ver' => '1.08', - } + }, + 'HTML::FormatText' => { + 'usage' => 'Core', + 'required' => '1', + 'min_ver' => '1.23', + }, }; 1; @@ -605,7 +612,7 @@ end of the outer hash and follow the key/value pattern used in the other depende =head2 Debian If you change the list of dependencies, and you use Debian, please also -run the debian/update-control script and commit the modifed version of +run the debian/update-control script and commit the modified version of debian/control into git as well. If you're not running Debian, don't worry about it. --