summaryrefslogtreecommitdiff
path: root/libgcc/configure
diff options
context:
space:
mode:
authorAndreas Krebbel <krebbel@gcc.gnu.org>2010-09-03 13:16:24 +0000
committerAndreas Krebbel <krebbel@gcc.gnu.org>2010-09-03 13:16:24 +0000
commitf4dae9fcc09f1324cfb0f6228e3a607a73e33a4e (patch)
tree518bd25190a71069077b016a87138a6bdb6d1300 /libgcc/configure
parent3c39bca6bbb53817e46978f31ea3581ba56ba477 (diff)
configure: Regenerate.
gcc/ 2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. * aclocal.m4: Regenerate. libdecnumber/ 2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. * aclocal.m4: Regenerate. libgcc/ 2010-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> * configure: Regenerate. From-SVN: r163816
Diffstat (limited to 'libgcc/configure')
-rw-r--r--libgcc/configure34
1 files changed, 23 insertions, 11 deletions
diff --git a/libgcc/configure b/libgcc/configure
index f5224276693..e6d42a1e46d 100644
--- a/libgcc/configure
+++ b/libgcc/configure
@@ -3634,6 +3634,7 @@ $as_echo "$libgcc_cv_dfp" >&6; }
decimal_float=$libgcc_cv_dfp
+
# Check whether --enable-decimal-float was given.
if test "${enable_decimal_float+set}" = set; then :
enableval=$enable_decimal_float;
@@ -3646,10 +3647,12 @@ Valid choices are 'yes', 'bid', 'dpd', and 'no'." "$LINENO" 5 ;;
else
case $host in
- powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
+ powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux* | s390*-*-linux*)
enable_decimal_float=yes
;;
*)
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: decimal float is not supported for this target" >&5
+$as_echo "$as_me: WARNING: decimal float is not supported for this target" >&2;}
enable_decimal_float=no
;;
esac
@@ -3658,16 +3661,25 @@ fi
# x86's use BID format instead of DPD
-if test x$enable_decimal_float = xyes; then
- case $host in
- i?86*-*-linux* | x86_64*-*-linux*)
- enable_decimal_float=bid
- ;;
- *)
- enable_decimal_float=dpd
- ;;
- esac
-fi
+case x$enable_decimal_float in
+ xyes)
+ case $host in
+ i?86*-*-* | x86_64*-*-*)
+ enable_decimal_float=bid
+ ;;
+ *)
+ enable_decimal_float=dpd
+ ;;
+ esac
+ ;;
+ xno)
+ # ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
+ # dependency on libdecnumber.
+ enable_decimal_float=dpd
+ ;;
+esac
+
+
# Check for fixed-point support.