aboutsummaryrefslogtreecommitdiffstats
path: root/testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch')
-rw-r--r--testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch b/testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch
deleted file mode 100644
index b35f476eb88..00000000000
--- a/testing/apache2-mod-perl/mod_perl-2.0.11-fix_building_with_perl-5.33.7.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-------------------------------------------------------------------------
-r1889014 | stevehay | 2021-04-20 15:55:29 +0200 (Út, 20 dub 2021) | 3 lines
-
-Fix build for perl >= 5.33.7
-
-Patch by Leon Timmermans <fawaka@gmail.com> from https://github.com/Perl/perl5/issues/18617
-
-Index: src/modules/perl/modperl_perl.c
-===================================================================
---- ./src/modules/perl/modperl_perl.c (revision 1889013)
-+++ ./src/modules/perl/modperl_perl.c (revision 1889014)
-@@ -268,7 +268,7 @@
- #ifdef MP_NEED_HASH_SEED_FIXUP
- if (MP_init_hash_seed_set) {
- #if MP_PERL_VERSION_AT_LEAST(5, 17, 6)
-- memcpy(&PL_hash_seed, &MP_init_hash_seed,
-+ memcpy(PL_hash_seed, &MP_init_hash_seed,
- sizeof(PL_hash_seed) > sizeof(MP_init_hash_seed) ?
- sizeof(MP_init_hash_seed) : sizeof(PL_hash_seed));
- PL_hash_seed_set = MP_init_hash_seed_set;
-
-------------------------------------------------------------------------