diff options
author | Nicolas R <atoomic@cpan.org> | 2019-09-27 17:37:39 -0600 |
---|---|---|
committer | Nicolas R <atoomic@cpan.org> | 2019-09-27 17:38:17 -0600 |
commit | 1470b692052f355cb9e7c2003b1a3ec55b1d5f27 (patch) | |
tree | 3716e01823a0564330ada2047cb936e670b6d1c2 | |
parent | 3ff5e56ace7d352a97203e1c882af6f46799cc73 (diff) | |
download | perl-1470b692052f355cb9e7c2003b1a3ec55b1d5f27.tar.gz |
Devel::PPPort - fix podcheck issues
Fix issues noticed by porting/podcheck.t
-rw-r--r-- | dist/Devel-PPPort/HACKERS | 8 | ||||
-rw-r--r-- | dist/Devel-PPPort/devel/buildperl.pl | 8 |
2 files changed, 11 insertions, 5 deletions
diff --git a/dist/Devel-PPPort/HACKERS b/dist/Devel-PPPort/HACKERS index c4475d4fcf..d507faa7ec 100644 --- a/dist/Devel-PPPort/HACKERS +++ b/dist/Devel-PPPort/HACKERS @@ -121,7 +121,8 @@ in __UNDEFINED__ SvMAGIC_set(sv, val) \ STMT_START { assert(SvTYPE(sv) >= SVt_PVMG); \ - (((XPVMG*) SvANY(sv))->xmg_magic = (val)); } STMT_END + (((XPVMG*) SvANY(sv))->xmg_magic = (val)); } \ + STMT_END This usually makes the code more compact and readable. @@ -151,7 +152,8 @@ You can use instead of - #if ((PERL_VERSION < 9) || (PERL_VERSION == 9 && PERL_SUBVERSION < 3)) + #if ((PERL_VERSION < 9) \ + || (PERL_VERSION == 9 && PERL_SUBVERSION < 3)) The version number can be either of the new form C<5.x.x> or the older form C<5.00x_yy>. Both are translated into the correct preprocessor @@ -526,6 +528,8 @@ module in the core: =head1 BUGS +No known bugs. + =head1 COPYRIGHT Version 3.x, Copyright (C) 2004-2019, Marcus Holland-Moritz diff --git a/dist/Devel-PPPort/devel/buildperl.pl b/dist/Devel-PPPort/devel/buildperl.pl index 780f6ec586..58f0f24dce 100644 --- a/dist/Devel-PPPort/devel/buildperl.pl +++ b/dist/Devel-PPPort/devel/buildperl.pl @@ -549,8 +549,9 @@ buildperl.pl - build/install perl distributions --config=configuration build this configuration [MULTI] The possibilities for this parameter are: - 'thread', 'thread5005', 'debug'; and - 'default', which means none of the others. + 'thread', 'thread5005', 'debug'; + and 'default', + which means none of the others. [default: all possible configurations] --perl=version build this version of perl [MULTI] @@ -570,7 +571,8 @@ buildperl.pl - build/install perl distributions directory (extra arguments are passed to Configure) - -j N Build and test with N parallel jobs, default 1. + -j N Build and test with N parallel jobs + [default: 1] options tagged with [MULTI] can be given multiple times |