diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-11-12 06:54:47 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-11-14 19:01:45 -0500 |
commit | 42f1389c2a4c872e9af48ca53c43b823c62ded4d (patch) | |
tree | edefbad79368906ba8568bc15b8a2d8950de9603 /ext/POSIX | |
parent | a7ed70b3948f6b7c72d33dbea081a0cb8d39a65d (diff) | |
download | perl-42f1389c2a4c872e9af48ca53c43b823c62ded4d.tar.gz |
AIX: Configure now detect this, leave the comment.
(Some AIX do not have long double math interfaces.)
Diffstat (limited to 'ext/POSIX')
-rw-r--r-- | ext/POSIX/POSIX.xs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 02cd7a21cb..701299391e 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -220,12 +220,7 @@ /* Certain AIX releases have the C99 math, but not in long double. * The <math.h> has them, e.g. __expl128, but no library has them! * - * See the comments in hints/aix.sh about long doubles. - * - * AIX 5 releases before 5.3 unknown, AIX releases 7 unknown */ -# if defined(_AIX53) || defined(_AIX61) -# define NO_C99_LONG_DOUBLE_MATH -# endif + * Also see the comments in hints/aix.sh about long doubles. */ # if defined(USE_QUADMATH) && defined(I_QUADMATH) # define c99_acosh acoshq |