Commit a4a9df5f by Ben Elliston Committed by Ben Elliston

configure.ac: Unconditionally disable decimal float by default.

	* configure.ac: Unconditionally disable decimal float by default.
	* configure: Regenerate.

From-SVN: r110637
parent b84d6ae9
2006-02-06 Ben Elliston <bje@au.ibm.com> 2006-02-06 Ben Elliston <bje@au.ibm.com>
* configure.ac: Unconditionally disable decimal float by default.
* configure: Regenerate.
2006-02-06 Ben Elliston <bje@au.ibm.com>
* read-rtl.c (read_name): Terminate reading on EOF. * read-rtl.c (read_name): Terminate reading on EOF.
2006-02-06 Ben Elliston <bje@au.ibm.com> 2006-02-06 Ben Elliston <bje@au.ibm.com>
......
...@@ -676,6 +676,7 @@ AC_ARG_ENABLE(decimal-float, ...@@ -676,6 +676,7 @@ AC_ARG_ENABLE(decimal-float,
if test x$enablevar = xyes ; then if test x$enablevar = xyes ; then
case $target in case $target in
powerpc*-*-linux* | i?86*-*-linux*) powerpc*-*-linux* | i?86*-*-linux*)
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)
...@@ -683,17 +684,7 @@ AC_ARG_ENABLE(decimal-float, ...@@ -683,17 +684,7 @@ AC_ARG_ENABLE(decimal-float,
;; ;;
esac esac
fi fi
], ], [enable_decimal_float=no])
[
case $target in
powerpc*-*-linux*)
enable_decimal_float=yes
;;
*)
enable_decimal_float=no
;;
esac
])
AC_SUBST(enable_decimal_float) AC_SUBST(enable_decimal_float)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment