new file mode 100644
@@ -0,0 +1,57 @@
+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>
+---
+ lib/IPC/Cmd.pm | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/lib/IPC/Cmd.pm b/lib/IPC/Cmd.pm
+index 88ed295..ccdf343 100644
+--- a/lib/IPC/Cmd.pm
++++ b/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) {
+--
+2.35.1
+
@@ -20,6 +20,7 @@ SRC_URI = "https://www.cpan.org/src/5.0/perl-${PV}.tar.gz;name=perl \
file://aacd2398e766500cb5d83c4d76b642fcf31d997a.patch \
file://ea57297a58b8f10ab885c19eec48ea076116cc1f.patch \
file://5bc1e5fdd87aa205011512cd1e6cc655bcf677fd.patch \
+ file://0001-ipc-force-POSIX-WNOHANG-resolving.patch \
"
SRC_URI:append:class-native = " \
file://perl-configpm-switch.patch \
Signed-off-by: Khem Raj <raj.khem@gmail.com> --- ...01-ipc-force-POSIX-WNOHANG-resolving.patch | 57 +++++++++++++++++++ meta/recipes-devtools/perl/perl_5.34.0.bb | 1 + 2 files changed, 58 insertions(+) create mode 100644 meta/recipes-devtools/perl/files/0001-ipc-force-POSIX-WNOHANG-resolving.patch