Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 70d391de2d922d20c97ccb9b93f01d86633f082d https://github.com/Perl/perl5/commit/70d391de2d922d20c97ccb9b93f01d86633f082d Author: Lukas Mai <lukasmai....@gmail.com> Date: 2023-09-26 (Tue, 26 Sep 2023)
Changed paths: M dist/Devel-PPPort/parts/inc/version Log Message: ----------- Devel::PPPort: fix PERL_VERSION_xx comparison macros - Fix PERL_VERSION_EQ(x, y, '*') and PERL_VERSION_NE(x, y, '*') by using the correct helper constants (D_PPP_VERSION_MAJOR and D_PPP_VERSION_MINOR don't exist) - Fix PERL_VERSION_LE and PERL_VERSION_GT; these used to claim that for all versions X, X > X and !(X <= X). See GH #21506. - Add unit tests.