Subject: | [PATCH] Clone broken with bleadperl |
With recent development Perls, Clone fails to compile. The patch below
fixes the problem.
--- Clone.xs~ 2006-10-08 06:31:55.000000000 +0100
+++ Clone.xs 2006-12-14 08:35:25.000000000 +0000
@@ -177,7 +177,9 @@ sv_clone (SV * ref, int depth)
case SVt_PVHV: /* 11 */
clone = (SV *) newHV();
break;
+#if PERL_VERSION <= 8
case SVt_PVBM: /* 8 */
+#endif
case SVt_PVLV: /* 9 */
case SVt_PVCV: /* 12 */
case SVt_PVGV: /* 13 */