summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-09-02 06:50:38 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-09-19 09:26:50 -0400
commitdbfbd36aab98acfcd2da555b98ce71d252238301 (patch)
treebdd3f44fdc64bee43f5d0c7ba297212efec7db76 /Configure
parent05b4a618e0f17cd89317fce1e24846b2bd34afca (diff)
downloadperl-dbfbd36aab98acfcd2da555b98ce71d252238301.tar.gz
quadmath_snprintf formats.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure13
1 files changed, 11 insertions, 2 deletions
diff --git a/Configure b/Configure
index bd0327e99d..343e062741 100755
--- a/Configure
+++ b/Configure
@@ -20651,20 +20651,29 @@ else
fi
fi
-if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
+if $test X"$usequadmath" = X"$define"; then
+ nveformat='"Qe"'
+ nvfformat='"Qf"'
+ nvgformat='"Qg"'
+ nvEUformat='"QE"'
+ nvFUformat='"QF"'
+ nvGUformat='"QG"'
+else
+ if $test X"$uselongdouble" = X"$define" -a X"$d_longdbl" = X"$define" -a X"$d_PRIgldbl" = X"$define"; then
nveformat="$sPRIeldbl"
nvfformat="$sPRIfldbl"
nvgformat="$sPRIgldbl"
nvEUformat="$sPRIEUldbl"
nvFUformat="$sPRIFUldbl"
nvGUformat="$sPRIGUldbl"
-else
+ else
nveformat='"e"'
nvfformat='"f"'
nvgformat='"g"'
nvEUformat='"E"'
nvFUformat='"F"'
nvGUformat='"G"'
+ fi
fi
case "$ivdformat" in