<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From e4f66188b1d5995806d789f8e78aedde89b9c0bb Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Sat, 28 Sep 2024 16:13:14 +0200
Subject: [PATCH] switch has gone in perl 5.41.x (RT #154926)

---
 sense.pm.PL | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sense.pm.PL b/sense.pm.PL
index 07f5250..df7d675 100755
--- a/sense.pm.PL
+++ b/sense.pm.PL
@@ -13,7 +13,7 @@ use strict qw(subs vars);
 BEGIN {
    if ($] &gt;= 5.010) {
       require feature;
-      feature-&gt;import (qw(say state switch));
+      feature-&gt;import (qw(say state));
    }
    if ($] &gt;= 5.012) {
       feature-&gt;import (qw(unicode_strings));
@@ -22,7 +22,9 @@ BEGIN {
       feature-&gt;import (qw(current_sub fc evalbytes));
       feature-&gt;unimport (qw(array_base));
    }
-
+   if ($] &gt;= 5.010 and $] &lt;= 5.040) {
+      feature-&gt;import (qw(switch));
+   }
 }
 
 no warnings;
-- 
2.11.0

</pre></body></html>