Upstream changes:
0.34 2012-12-09 14:46:09 garu
- making some tests optional (fixes RT81774) (GARU)
- modernizing synopsis (GARU)
0.33 2012-11-24 11:37:22 garu
- fix typo in croak message (Salvatore Bonaccorso)
0.32 2012-11-22 12:14:07 garu
- Stop skipping SvROK handling for all magical scalars. This fixes
RT issues 67105, 79730 and 80201 (FLORA).
- making the Changes file compliant to the CPAN::Changes spec (GARU).
- Fixing tests when Scalar::Util::weaken is not available. As a
result, tests should now pass even in odd OpenBSD versions (GARU).
- removed dubious documentation on the optional parameter until
it is 'fixed'. Right now it just increases the refcount when it's 0,
and clones otherwise (which isn't exactly what it says). This
fixes RT issue 57773 (GARU).
- updated remark on Storable's dclone() to address RT issue 50174 (GARU)
- updated Makefile.PL to include test dependencies (GARU)
- update to 0.31
Upstream changes:
Revision 0.31 2009/01/20 04:54:37 ray
Made changes for build failure on Solaris, apparently compiler warnings from the last patch are errors in Solaris.
Also, brought Changes file up to date.
0.27, 0.28 not described.
Revision 0.26 2007-10-15 04:52:42 ray
Made a change in CLONE_KEY to the way Clone stores refs in the ref hash.
Perl no longer uses the SvANY part of the SV struct in the same way which
meams the old way of storing the hash key is no longer unique.
Thanks to Slaven Rezic for the patch.
Revision 0.25 2007-07-25 03:41:04 ray
Latest patch from Ruslan Zakirov. Patched another memory leak.
Revision 0.24 2007-07-25 03:33:57 ray
Bug fix for 5.9.*, for some reason the 'visible' logic is no longer working.
I #if 'ed it out until I figure out what is going on.
Also removed an old redundant CLONE_STORE, could have been the cause of some
memory leaks.
Changes:
Revision 0.22 2006-10-08 05:35:19 ray
D'oh! The 0.21 tardist that I just uploaded to CPAN contained the 0.20 Clone.xs file. This release is just in case any of the 0.21 releases get mirrored.
Revision 0.21 2006-10-08 04:02:56 ray
Clone was segfaulting due to a null SV object in a magical reference (a
PERL_MAGIC_utf8).
21859: Clone segfault (isolated example)
Revision 0.20 2006/03/08 17:15:23 ray
Commented out VERSION causes errors with DynaLoader in perl 5.6.1 (and
probably all earlier versions. It was removed.
Revision 0.19 2006/03/06 07:22:32 ray
added a test and fix for tainted variables.
use a static VERSION in Clone.pm.
Revision 0.18 2005/05/23 15:34:31 ray
moved declaration to top of function, M$ (and other) C compilers choke.
Revision 0.17 2005/05/05 22:26:01 ray
Changed PERL_MAGIC_backref to '<' for compatability with 5.6
Revision 0.16 2005/04/20 15:49:35 ray
Bug fix for id 11997, "Clone dies horribly when Scalar::Util::weaken is around"
see http://rt.cpan.org/Ticket/Display.html?id=11997 for details.
Revision 0.15.2.1 2005/05/05 21:55:30 ray
changed PERL_MAGIC_backref to '<' for backward compatibility with 5.6
This module provides a clone() method which makes recursive copies
of nested hash, array, scalar and reference types, including tied
variables and objects.