perlPackages.MHonArc: fix build
This commit is contained in:
parent
51986993bb
commit
cd714e7205
26
pkgs/development/perl-modules/mhonarc.patch
Normal file
26
pkgs/development/perl-modules/mhonarc.patch
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/lib/mhamain.pl b/lib/mhamain.pl
|
||||||
|
index 80980a2..c1259ce 100644
|
||||||
|
--- a/lib/mhamain.pl
|
||||||
|
+++ b/lib/mhamain.pl
|
||||||
|
@@ -1562,7 +1562,7 @@ sub signal_catch {
|
||||||
|
##
|
||||||
|
sub defineIndex2MsgId {
|
||||||
|
no warnings qw(deprecated);
|
||||||
|
- if (!defined(%Index2MsgId)) {
|
||||||
|
+ unless (%Index2MsgId) {
|
||||||
|
foreach (keys %MsgId) {
|
||||||
|
$Index2MsgId{$MsgId{$_}} = $_;
|
||||||
|
}
|
||||||
|
diff --git a/lib/mhopt.pl b/lib/mhopt.pl
|
||||||
|
index 02fb05e..939109b 100644
|
||||||
|
--- a/lib/mhopt.pl
|
||||||
|
+++ b/lib/mhopt.pl
|
||||||
|
@@ -865,7 +865,7 @@ sub update_data_1_to_2 {
|
||||||
|
sub update_data_2_1_to_later {
|
||||||
|
no warnings qw(deprecated);
|
||||||
|
# we can preserve filter arguments
|
||||||
|
- if (defined(%main::MIMEFiltersArgs)) {
|
||||||
|
+ if (%main::MIMEFiltersArgs) {
|
||||||
|
warn qq/ preserving MIMEARGS...\n/;
|
||||||
|
%readmail::MIMEFiltersArgs = %main::MIMEFiltersArgs;
|
||||||
|
$IsDefault{'MIMEARGS'} = 0;
|
@ -10669,6 +10669,9 @@ let
|
|||||||
url = "http://dcssrv1.oit.uci.edu/indiv/ehood/release/MHonArc/tar/MHonArc-2.6.19.tar.gz";
|
url = "http://dcssrv1.oit.uci.edu/indiv/ehood/release/MHonArc/tar/MHonArc-2.6.19.tar.gz";
|
||||||
sha256 = "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq";
|
sha256 = "0ll3v93yji334zqp6xfzfxc0127pmjcznmai1l5q6dzawrs2igzq";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [ ../development/perl-modules/mhonarc.patch ];
|
||||||
|
|
||||||
outputs = [ "out" "dev" ]; # no "devdoc"
|
outputs = [ "out" "dev" ]; # no "devdoc"
|
||||||
|
|
||||||
installTargets = "install";
|
installTargets = "install";
|
||||||
|
Loading…
Reference in New Issue
Block a user