In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/808285e0c19deb01a491a8e21c7a4b31ab7dae30?hp=e83bf98c6450af2490b933cadbe56c921aa055fe>
- Log ----------------------------------------------------------------- commit 808285e0c19deb01a491a8e21c7a4b31ab7dae30 Author: Tony Cook <t...@develop-help.com> Date: Mon Nov 10 16:01:02 2014 +1100 NetBSD 5.1 doesn't support some of the new symbols POSIX wants ----------------------------------------------------------------------- Summary of changes: ext/POSIX/POSIX.xs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 9e883b3..3b06ac2 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -490,6 +490,21 @@ #endif +/* NetBSD 5.1 appears to be missing: + + nexttoward nearbyint exp2 tgamma fma remquo + + */ + +#if defined(__NetBSD__) +# undef c99_nexttoward +# undef c99_nearbyint +# undef c99_exp2 +# undef c99_tgamma +# undef c99_fma +# undef c99_remquo +# endif + /* XXX Regarding C99 math.h, Android seems to be missing these: For API level < 13 -- Perl5 Master Repository