blob: a965fbeeecf64584446ec71a4a75113ac91791df [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From 8e1efba7560d8d55524c7a0f1b0539ddce419b86 Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Brendan O'Dea <bod@debian.org>
3Date: Fri, 16 Dec 2005 01:32:14 +1100
Brad Bishop6e60e8b2018-02-01 10:27:11 -05004Subject: [PATCH 6/8] Remove Errno version check due to upgrade problems with
5 long-running processes.
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7Bug-Debian: http://bugs.debian.org/343351
8
9Remove version check which can cause problems for long running
10processes embedding perl when upgrading to a newer version,
11compatible, but built on a different machine.
12
13Patch-Name: debian/errno_ver.diff
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014Upstream-Status: Pending
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015---
16 ext/Errno/Errno_pm.PL | 5 -----
17 1 file changed, 5 deletions(-)
18
19diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020index 6251a3c..eeed445 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021--- a/ext/Errno/Errno_pm.PL
22+++ b/ext/Errno/Errno_pm.PL
Brad Bishop6e60e8b2018-02-01 10:27:11 -050023@@ -294,11 +294,6 @@ EDQ
24 # they've already declared perl doesn't need to worry about this risk.
25 if(!$ENV{'PERL_BUILD_EXPAND_CONFIG_VARS'}) {
26 print <<"CONFIG_CHECK_END";
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027-use Config;
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028-"\$Config{'archname'}-\$Config{'osvers'}" eq
29-"$archname-$Config{'osvers'}" or
30- die "Errno architecture ($archname-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})";
31-
Brad Bishop6e60e8b2018-02-01 10:27:11 -050032 CONFIG_CHECK_END
33 }
34
35--
362.1.4
37