diff options
author | Spider Boardman <spider@orb.nashua.nh.us> | 2000-08-31 07:48:48 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-31 16:04:49 +0000 |
commit | 53796371599bf0ffdbd56139e8027e8e40cf0f6c (patch) | |
tree | 0427a6b474cc0a423a663de2501cc15343cd90dc /ext/POSIX | |
parent | 0d3805ceaed09bdcb5650f63eb498008650339b3 (diff) | |
download | perl-53796371599bf0ffdbd56139e8027e8e40cf0f6c.tar.gz |
POSIX doesn't report long double values under -Duselongdouble
when the long doubles are "real" (bigger than doubles).
Subject: [ID 20000831.014] Not OK: perl v5.7.0 +DEVEL6919 on alpha-dec_osf-ld 5.1
Message-Id: <200008311548.LAA0000161952@peano.zk3.dec.com>
p4raw-id: //depot/perl@6949
Diffstat (limited to 'ext/POSIX')
-rw-r--r-- | ext/POSIX/POSIX.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.xs b/ext/POSIX/POSIX.xs index 06869f6ec3..a536671afc 100644 --- a/ext/POSIX/POSIX.xs +++ b/ext/POSIX/POSIX.xs @@ -539,7 +539,7 @@ mini_mktime(struct tm *ptm) } #ifdef HAS_LONG_DOUBLE -# if LONG_DOUBLESIZE > DOUBLESIZE +# if LONG_DOUBLESIZE > NVSIZE # undef HAS_LONG_DOUBLE /* XXX until we figure out how to use them */ # endif #endif |