* Remove SvREFCNT_dec_NN until it can be implemented
properly.
(Thanks to bulk88 for reporting GH #10)
* Fix GH #11 - compiler warning under clang
(Thanks to jhi for reporting it)
* Fix GH #12 - compiler warnings
(Thanks to jhi for reporting it)
* Add support for HeUTF8
* Add GetFileContents() to retrieve the contents of the
ppport.h file
* Update MAX_VER to be 5.20
* Update issue tracker to GitHub
* Add support for the following API
SvREFCNT_dec_NN
mg_findext
sv_unmagicext
* Update META
Move bug tracker to github
Provide link to repository
* Avoid syntax disallowed by C++11
(Thanks to Tony C for the patch)
* Fix cpan #87870: Merge core perl commit 90b0dc0e2e
(Thanks to Father Chrysostomos for the original patch and
to Steve Hay for forwarding it)
* Fix cpan #86975: Deterministically order API elements in POD
(Thanks to Karl Williamson for providing a patch.)
* Fix cpan #81796: my $_ is deprecated
(Thanks to Nicholas Clark for providing a patch)
* Fix cpan #81484: fix isASCII and isCNTRL for inputs > 255
(Thanks to Karl Williamson for providing a patch)
* Fix cpan #80314: make use of PERL_NO_GET_CONTEXT the default
* Fix cpan #79814: Install to 'site' for perl 5.11+
(Thanks to Robert Sedlacek for providing a patch)
* Fix cpan #78271: Need SvPV_nomg_nolen
* Adapt buildperl.pl for newer Perl releases
* Update masked_versions regex for 5.005 thread builds
* Some tweaks needed to support 5.003 on 64-bit platforms
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
Changes from previous:
3.20 - 2011-09-10
* fix CPAN #56749: isASCII and isCNTRL macros are buggy
(thanks to Karl Williamson for providing a patch and patiently
waiting almost two years for me to integrate it)
* fix CPAN #70427: RealPPPort.xs:1587: error: lvalue required as unary ‘&’ operand
- fix CPAN #50763: mistaken use of $[
(thanks to Zefram for spotting this)
- remove spurious PUSHMARK from Perl_ppaddr_t
(thanks to Gerard Goossen for providing a patch)
- improved support for newer compilers in buildperl.pl
(thanks to Philippe Bruhat (BooK) for providing a patch)
- added support for the following API
memEQs
memNEs
- lots of small toolchain updates
- fix a warning emitted by the test suite with older perls
- added support for the following API
newSVpvs_share
get_cvn_flags
get_cvs
(thanks to Goro Fuji for providing a patch to
implement all of these, fixes CPAN #47174)
- keep up with latest core changes
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
- Updating package of p5 module Devel::PPPort from 3.17 to 3.19
- Setting license to ${PERL5_LICENSE} according to META.yaml
Upstream changes:
3.19 - 2009-06-14
* updated base/todo files
3.18_01 - 2009-06-12
* fix CPAN #44614: Please support XSBODY
* fix CPAN #44655: Please support SVfARG
* added support for the following API
gv_fetchpvn_flags
gv_fetchpvs
gv_stashpvs
GvSVn
HvNAME_get
HvNAMELEN_get
isGV_with_GP
newSV_type
PL_error_count
PL_in_my
PL_in_my_stash
SVfARG
XSPROTO
(thanks to Goro Fuji for providing a patch to
implement almost all of these, fixes CPAN #44087)
3.18 - 2009-06-12
* remove MAN3PODS option from Makefile.PL, which is
no longer needed (thanks to Nicholas Clark for
providing a patch)
* adapt mktests.PL for new layout of ext modules in
the core
- Updating package to 3.17
Upstream changes:
3.17 - 2009-03-15
* rework PTR macros, fixing PTR2ul for 5.6.1
(fixes CPAN #39802, thanks to CHOCOLATE for
reporting and providing a patch)
* added support for the following API
PTR2nat
(second part of fix for CPAN #39802)
distfile for 3.15 is no longer available via CPAN.
Upstream changes:
3.16 - 2009-01-23
* fix DEFSV_set() for threaded 5.005 perls
* add G_METHOD support to call_sv()
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
Perl's API has changed over time, gaining new features, new functions,
increasing its flexibility, and reducing the impact on the C
namespace environment (reduced pollution). The header file written
by this module, typically ppport.h, attempts to bring some of the
newer Perl API features to older versions of Perl, so that you can
worry less about keeping track of old releases, but users can still
reap the benefit.
Devel::PPPort contains a single function, called WriteFile. Its
only purpose is to write the ppport.h C header file. This file
contains a series of macros and, if explicitly requested, functions
that allow XS modules to be built using older versions of Perl.
Currently, Perl versions from 5.003 to 5.10.0 are supported.
This module is used by h2xs to write the file ppport.h.