1.15 to 1.16.
pkgsrc changes:
- Add USE_LANGUAGES=c to remark it's an XS module requiring a C compiler
Upstream changes:
version 1.16; 2011-11-17
* bugfix: use supported API to put destructor calls on the save stack
(the unsupported way used before was wrong for 64-bit systems on
perl 5.13.1 and later)
* document the behaviour of "alias return" in more detail
* convert .cvsignore to .gitignore
* port to Perl 5.15.0, where the op type aelemfast has been split into
aelemfast and aelemfast_lex
* test compatibility with Devel::CallParser
Changes 1.14:
* bugfix: never unhook peephole optimiser, because unhooking is liable
to fail if anything else hooked it
* bugfix: revise check for dorassign opcode to cope with FreeBSD's
mutant Perl 5.8 that has it
* test POD syntax and coverage
1.08 Fri Oct 22 09:39 BST 2010
- Updated to work with Perl versions 5.11.0 up to 5.13.0,
including particularly the major change in when rv2cv ops get
built in 5.11.2
Data::Alias provides a comprehensive set of aliasing operations.
Data::Alias is a module that allows you to apply "aliasing semantics"
to a section of code, causing aliases to be made whereever Perl
would normally make copies instead. You can use this to improve
efficiency and readability, when compared to using references.