Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
3121748c
Commit
3121748c
authored
Sep 22, 2020
by
IKEDA Soji
Browse files
Update a dependency MHonArc::UTF8. See also sympa-community/MHonArc#7
parent
2e03ac8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
cpanfile
View file @
3121748c
...
...
@@ -96,7 +96,7 @@ requires 'List::Util::XS', '>= 1.20';
requires 'Locale::Messages', '>= 1.20';
# MHonArc is used to build Sympa web archives
requires 'MHonArc::UTF8';
requires 'MHonArc::UTF8'
, '>= 2.6.23'
;
# Required to compute digest for password and emails
requires 'MIME::Base64', '>= 3.03';
...
...
src/sbin/sympa_wizard.pl.in
View file @
3121748c
...
...
@@ -554,20 +554,11 @@ sub check_modules {
print
gettext
('
was not found on this system.
')
.
"
\n
";
install_module
(
$mod
,
{'
default
'
=>
$default
},
$cpan_modules
);
}
else
{
my
(
$vs
,
$v
);
## MHonArc module does not provide its version the standard way
if
(
$mod
=~
/^MHonArc/i
)
{
require
"
mhamain.pl
";
$v
=
$
mhonarc::
VERSION
;
}
else
{
$vs
=
"
$mod
"
.
"
::VERSION
";
{
no
strict
'
refs
';
$v
=
$$vs
;
}
$vs
=
"
$mod
"
.
"
::VERSION
";
{
no
strict
'
refs
';
$v
=
$$vs
;
}
my
$rv
=
$cpan_modules
->
{
$mod
}{
required_version
}
||
"
1.0
";
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment