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.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
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
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").
binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.
addresses PR pkg/28619 from H. Todd Fujinaka.
This module provides a clone() method which makes recursive copies
of nested hash, array, scalar and reference types, including tied
variables and objects.