From 140f42d6add8d0cf88554cf071036359a5bf0e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 19 Mar 2022 18:29:50 +0800 Subject: [PATCH] Revised the prerequisite module declarations in Makefile.PL and Build.PL. --- Build.PL | 8 ++++---- Makefile.PL | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Build.PL b/Build.PL index f7aafe2..4d0b9c0 100755 --- a/Build.PL +++ b/Build.PL @@ -61,11 +61,11 @@ my $build = Module::Build->new( "Date::Parse" => 0, }, recommends => { - "File::MMagic" => 0, + "File::MMagic" => 0, "IO::Compress::Gzip" => 0, - "IO::Compress::Bzip2" => 2, - "IO::Compress::Xz" => 0, - "Term::ReadKey" => 0, + "IO::Compress::Bzip2" => 0, + "IO::Compress::Xz" => 0, + "Term::ReadKey" => 0, }, build_requires => { "Module::Signature" => 0, diff --git a/Makefile.PL b/Makefile.PL index 8b49e45..77855a2 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -51,11 +51,11 @@ EOT # Optional prerequisite modules our (%OPT_PREREQ); %OPT_PREREQ = ( - "File::MMagic" => 0, + "File::MMagic" => 0, "IO::Compress::Gzip" => 0, - "IO::Compress::Bzip2" => 2, - "IO::Compress::Xz" => 0, - "Term::ReadKey" => 0, + "IO::Compress::Bzip2" => 0, + "IO::Compress::Xz" => 0, + "Term::ReadKey" => 0, ); delete $OPT_PREREQ{$_} foreach grep eval "use $_ $OPT_PREREQ{$_} qw(); 1;", sort keys %OPT_PREREQ;