summaryrefslogtreecommitdiff
path: root/sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-09-23 05:18:59 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-09-23 05:18:59 +0100
commit27fccc1801092355fdf16a4ffcbf7a58a163e335 (patch)
treee042e839dfaecb316faee1131254f0edc01f7af8 /sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch
parent820b3cf4687f358703c643bacf3e5a06ccfa4402 (diff)
gentoo auto-resync : 23:09:2023 - 05:18:59
Diffstat (limited to 'sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch')
-rw-r--r--sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch b/sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch
deleted file mode 100644
index 4a9d349ccb9a..000000000000
--- a/sci-mathematics/polymake/files/polymake-4.6-perl-5.36.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -up lib/core/src/perl/RefHash.xxs.orig lib/core/src/perl/RefHash.xxs
---- a/lib/core/src/perl/RefHash.xxs 2022-06-06 10:35:17.689807548 +0200
-+++ b/lib/core/src/perl/RefHash.xxs 2022-06-06 10:37:12.935663947 +0200
-@@ -71,7 +71,11 @@ SV* tmp_keysv::set(SV* keysv)
- Copy(obj.keyp, HEK_KEY(hekp), sizeof(SV*), char);
- HEK_LEN(hekp) = sizeof(SV*);
- HEK_HASH(hekp) = U32(obj.keyl >> 4); // hash value
-+#if PerlVersion < 5360
- HEK_FLAGS(hekp) = HVhek_UNSHARED;
-+#else
-+ HEK_FLAGS(hekp) = HVhek_NOTSHARED;
-+#endif
- sv.sv_any = &xpv;
- sv.sv_refcnt = 1;
- sv.sv_flags = SVt_PVIV | SVf_IVisUV | SVf_POK | SVp_POK | PmFlagsForHashKey;