In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/f5fcf91032268f945100bcb5ea227e419712c779?hp=1279d9234c7e7c0c0cc4d980396201696bace825>
- Log ----------------------------------------------------------------- commit f5fcf91032268f945100bcb5ea227e419712c779 Author: Father Chrysostomos <[email protected]> Date: Thu Jul 28 09:56:34 2016 -0700 Increase $POSIX::VERSION to 1.71 M ext/POSIX/lib/POSIX.pm commit d80a6052a64d2df61ee61888853ef5f3872c0e34 Author: Jarkko Hietaniemi <[email protected]> Date: Thu Jul 28 09:55:07 2016 -0700 [perl #128763] Fix POSIX.xs longdbl assertion M ext/POSIX/POSIX.xs commit 5d3908cb49f1d84ebc7b8efec7c2b302c84eae5b Author: Father Chrysostomos <[email protected]> Date: Wed Jul 27 22:18:23 2016 -0700 t/lib/common.pl: Ignore .rej files M t/lib/common.pl ----------------------------------------------------------------------- Summary of changes: ext/POSIX/POSIX.xs | 2 +- ext/POSIX/lib/POSIX.pm | 2 +- t/lib/common.pl | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 3820026..a950af3 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -1153,7 +1153,7 @@ static NV my_trunc(NV x) # define NV_PAYLOAD_TYPE NV #endif -#ifdef LONGDOUBLE_DOUBLEDOUBLE +#if defined(USE_LONG_DOUBLE) && defined(LONGDOUBLE_DOUBLEDOUBLE) # define NV_PAYLOAD_SIZEOF_ASSERT(a) assert(sizeof(a) == NVSIZE / 2) #else # define NV_PAYLOAD_SIZEOF_ASSERT(a) assert(sizeof(a) == NVSIZE) diff --git a/ext/POSIX/lib/POSIX.pm b/ext/POSIX/lib/POSIX.pm index 1bf8e62..9960b2c 100644 --- a/ext/POSIX/lib/POSIX.pm +++ b/ext/POSIX/lib/POSIX.pm @@ -4,7 +4,7 @@ use warnings; our ($AUTOLOAD, %SIGRT); -our $VERSION = '1.70'; +our $VERSION = '1.71'; require XSLoader; diff --git a/t/lib/common.pl b/t/lib/common.pl index 367c676..4ff2b09 100644 --- a/t/lib/common.pl +++ b/t/lib/common.pl @@ -27,7 +27,8 @@ if (@ARGV) { print "ARGV = [@ARGV]\n"; @w_files = map { "./lib/$pragma_name/$_" } @ARGV; } else { - @w_files = sort glob catfile(curdir(), "lib", $pragma_name, "*"); + @w_files = sort grep !/\.rej\z/, + glob catfile(curdir(), "lib", $pragma_name, "*"); } my ($tests, @prgs) = setup_multiple_progs(@w_files); -- Perl5 Master Repository
