[SCM] Debian packaging of libnet-server-perl branch, master, updated. debian/2.007-1-3-ga0e5c2c
Xavier Guimard
x.guimard at free.fr
Sun Jun 2 06:12:08 UTC 2013
The following commit has been merged in the master branch:
commit e1293a51d216474c06d52a9468825073bc968ea7
Author: Xavier Guimard <x.guimard at free.fr>
Date: Sun Jun 2 08:11:32 2013 +0200
Fix "applications die() because of SIGCHLD vs. SIGCLD confusion" using a patch
Closes: #708180
diff --git a/debian/patches/correct-SIG-confusion.patch b/debian/patches/correct-SIG-confusion.patch
new file mode 100644
index 0000000..72ca0b9
--- /dev/null
+++ b/debian/patches/correct-SIG-confusion.patch
@@ -0,0 +1,18 @@
+Description: <short summary of the patch>
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/708180
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=85308
+Reviewed-By: Xavier Guimard <x.guimard at free.fr>
+Last-Update: 2013-04-02
+
+--- a/lib/Net/Server/SIG.pm
++++ b/lib/Net/Server/SIG.pm
+@@ -55,7 +55,7 @@
+ } elsif ($ref eq 'CODE') {
+ $_SIG{$sig} = 0;
+ $_SIG_SUB{$sig} = $code_ref;
+- $SIG{$sig} = sub{ $Net::Server::SIG::_SIG{$_[0]} = 1; };
++ $SIG{$sig} = sub{ $Net::Server::SIG::_SIG{$sig} = 1; };
+ } else {
+ die "Unsupported sig type -- must be 'DEFAULT' or a code ref.";
+ }
diff --git a/debian/patches/series b/debian/patches/series
index 1817668..2c723ae 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
spelling-error.patch
+correct-SIG-confusion.patch
--
Debian packaging of libnet-server-perl
More information about the Pkg-perl-cvs-commits
mailing list