--- /dev/null
+From 0d8c411ef7e8b4452007c77eee3d83d227b86bb4 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 8 Feb 2022 14:05:22 -0800
+Subject: [PATCH] ipc: force POSIX::WNOHANG resolving
+
+It seems POSIX module is special and may not have autovivified (resolved) WNOHANG.
+see [1]
+
+Fixes
+ Bareword "POSIX::WNOHANG" not allowed while "strict subs"
+
+[1] https://redmine.lighttpd.net/projects/lighttpd/repository/14/revisions/78eb0e39454ab3ca8e7ef77f1d014b50b3632fb9
+
+Upstream-Status: Pending
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ cpan/IPC-Cmd/lib/IPC/Cmd.pm | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+--- a/cpan/IPC-Cmd/lib/IPC/Cmd.pm
++++ b/cpan/IPC-Cmd/lib/IPC/Cmd.pm
+@@ -499,7 +499,7 @@ sub kill_gently {
+ next;
+ }
+
+- my $waitpid = waitpid($pid, POSIX::WNOHANG);
++ my $waitpid = waitpid($pid, POSIX::WNOHANG());
+
+ if ($waitpid eq -1) {
+ $child_finished = 1;
+@@ -619,10 +619,10 @@ sub open3_run {
+ #
+ kill(-9, $$);
+
+- POSIX::_exit 1;
++ POSIX::_exit(1);
+ }
+
+- my $waitpid = waitpid($pid, POSIX::WNOHANG);
++ my $waitpid = waitpid($pid, POSIX::WNOHANG());
+
+ # child finished, catch it's exit status
+ if ($waitpid ne 0 && $waitpid ne -1) {
+@@ -1005,7 +1005,7 @@ sub run_forked {
+ $child_finished = 1;
+ }
+
+- my $waitpid = waitpid($pid, POSIX::WNOHANG);
++ my $waitpid = waitpid($pid, POSIX::WNOHANG());
+
+ # child finished, catch it's exit status
+ if ($waitpid ne 0 && $waitpid ne -1) {