summaryrefslogtreecommitdiff
path: root/config/dfp.m4
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2010-09-06 15:46:08 +0000
committerH.J. Lu <hjl.tools@gmail.com>2010-09-06 15:46:08 +0000
commit7696d299cfda2989a7f1433a78177e76c790598d (patch)
treec4ea0415d8a3ccc29adec71e27924d5128fdff5f /config/dfp.m4
parentcc41ac37eb8ed6f04c33ec58106bbfd650aea076 (diff)
downloadgdb-7696d299cfda2989a7f1433a78177e76c790598d.tar.gz
Sync bootstrap-lto.mk and dfp.m4 with gcc.
Diffstat (limited to 'config/dfp.m4')
-rw-r--r--config/dfp.m49
1 files changed, 5 insertions, 4 deletions
diff --git a/config/dfp.m4 b/config/dfp.m4
index 4cace763fa4..d5dbaf59b3b 100644
--- a/config/dfp.m4
+++ b/config/dfp.m4
@@ -13,7 +13,7 @@ AC_ARG_ENABLE(decimal-float,
to use],
[
case $enable_decimal_float in
- yes | no | bid | dpd) ;;
+ yes | no | bid | dpd) default_decimal_float=$enable_decimal_float ;;
*) AC_MSG_ERROR(['$enable_decimal_float' is an invalid value for --enable-decimal-float.
Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;;
esac
@@ -24,7 +24,7 @@ Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;;
enable_decimal_float=yes
;;
*)
- AC_MSG_WARN(decimal float is not supported for this target, ignored)
+ AC_MSG_WARN([decimal float is not supported for this target, ignored])
enable_decimal_float=no
;;
esac
@@ -41,13 +41,14 @@ case x$enable_decimal_float in
enable_decimal_float=dpd
;;
esac
+ default_decimal_float=$enable_decimal_float
;;
xno)
# ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
# dependency on libdecnumber.
- enable_decimal_float=dpd
+ default_decimal_float=dpd
;;
esac
AC_SUBST(enable_decimal_float)
-]) \ No newline at end of file
+])