summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-04-02 09:07:39 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2019-04-02 09:07:39 +0000
commit03bf57220561d959958ee374ee5ebdf0ffb7b221 (patch)
tree83db6896cf8e7a244e3def9c919ace2a2bdffc39 /configure.ac
parent599bb54f48da8b2fcb0d5b22e16ca39c0eb6ec9f (diff)
downloadmpfr-03bf57220561d959958ee374ee5ebdf0ffb7b221.tar.gz
[configure.ac] AC_ARG_ENABLE(float128,...): updated comment and
description. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@13462 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index bb26a3c04..a081f043c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -243,12 +243,13 @@ AC_ARG_ENABLE(decimal-float,
*) AC_MSG_ERROR([bad value for --enable-decimal-float: yes or no]) ;;
esac])
-dnl FIXME: If a fallback to __float128 is used, say binary128 instead
-dnl of _Float128.
+dnl Warning! Not to be confused with _Decimal128. Thus it is better
+dnl to say binary128 in the description. It can correspond to either
+dnl _Float128 (ISO/IEC TS 18661) or __float128 (old type name).
AC_ARG_ENABLE(float128,
- [ --disable-float128 explicitly disable _Float128 support
- --enable-float128 build conversion functions from/to _Float128
- [[default=autodetect]]],
+ [ --disable-float128 explicitly disable binary128 support
+ --enable-float128 build conversion functions from/to binary128
+ (_Float128 or __float128) [[default=autodetect]]],
[ case $enableval in
yes) ;;
no) ;;