diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-31 18:09:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-31 18:09:20 +0000 |
commit | 59155cc063cf4bfd6a5bac9ec4e936509becfd87 (patch) | |
tree | 061f9c41a59986ca3ad35e19813701e7e11de88e /Configure | |
parent | f4a14a62773a52915497a005f3032730fe6154fd (diff) | |
download | perl-59155cc063cf4bfd6a5bac9ec4e936509becfd87.tar.gz |
Forget about NV_MAX (#6951). Various floating point tweaks,
ideas from Eric Fifer, Yitzchak, Alan, and Spider.
p4raw-id: //depot/perl@6953
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Thu Aug 31 17:56:37 EET DST 2000 [metaconfig 3.0 PL70] +# Generated on Thu Aug 31 21:06:17 EET DST 2000 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >/tmp/c1$$ <<EOF @@ -5414,7 +5414,7 @@ case "$use64bitint$use64bitall" in *"$define"*) case "$archname64" in '') - "This architecture is naturally 64-bit, not changing architecture name." >&4 + echo "This architecture is naturally 64-bit, not changing architecture name." >&4 ;; *) case "$use64bitint" in @@ -7847,17 +7847,21 @@ int main() Gconvert((DOUBLETYPE)-100000.0, 8, 0, buf); checkit("-100000", buf); + Gconvert((DOUBLETYPE)123.456, 8, 0, buf); + checkit("123.456", buf); + exit(0); } EOP case "$d_Gconvert" in gconvert*) xxx_list='gconvert gcvt sprintf' ;; gcvt*) xxx_list='gcvt gconvert sprintf' ;; -*) xxx_list='sprintf gconvert gcvt' ;; +*) xxx_list='gconvert gcvt sprintf' ;; esac case "$d_longdbl$uselongdouble$d_PRIgldbl" in "$define$define$define") + # for long doubles prefer sprintf xxx_list="`echo $xxx_list|sed s/sprintf//`" xxx_list="sprintf $xxx_list" case "$d_qgcvt" in @@ -10431,7 +10435,6 @@ EOP esac - : check for off64_t echo " " echo "Checking to see if you have off64_t..." >&4 |