Skip Menu |

This queue is for tickets about the Clone CPAN distribution.

Report information
The Basics
Id: 24789
Status: resolved
Priority: 0/
Queue: Clone

People
Owner: Nobody in particular
Requestors: SMPETERS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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 */
On Sun Feb 04 20:42:59 2007, SMPETERS wrote: Show quoted text
> With recent development Perls, Clone fails to compile. The patch below > fixes the problem.
Please apply this patch. Clone still fails on bleadperl and will continue to do so until this is applied.
I applied the patch and uploaded the latest version (0.23) to CPAN.