summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-03-01 02:11:41 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2016-03-01 02:11:41 +0000
commitb8bc01cd5c939d25a41d9860f0cc4c7bee8f7f9e (patch)
tree4e34b7a05350820074b70ce463a6d8afd3c25351 /acinclude.m4
parent8ac7907a7375944587cc8d4ecfc6e8c9059323af (diff)
downloadmpfr-b8bc01cd5c939d25a41d9860f0cc4c7bee8f7f9e.tar.gz
[acinclude.m4] Removed old code for Alpha (as suggested by Paul).
It was no longer tested. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@10152 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index d542154f1..ff0b5743e 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -124,26 +124,6 @@ static int f (int (*func)(int, const struct sigaction *, struct sigaction *))
[Define if you have a working sigaction function.])
],[AC_MSG_RESULT(no)])
-dnl Check for IEEE-754 switches on Alpha
-case $host in
-alpha*-*-*)
- saved_CFLAGS="$CFLAGS"
- AC_CACHE_CHECK([for IEEE-754 switches], mpfr_cv_ieee_switches, [
- if test -n "$GCC"; then
- mpfr_cv_ieee_switches="-mfp-rounding-mode=d -mieee-with-inexact"
- else
- mpfr_cv_ieee_switches="-fprm d -ieee_with_inexact"
- fi
- CFLAGS="$CFLAGS $mpfr_cv_ieee_switches"
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], , mpfr_cv_ieee_switches="none")
- ])
- if test "$mpfr_cv_ieee_switches" = "none"; then
- CFLAGS="$saved_CFLAGS"
- else
- CFLAGS="$saved_CFLAGS $mpfr_cv_ieee_switches"
- fi
-esac
-
dnl check for long long
AC_CHECK_TYPE([long long int],
AC_DEFINE(HAVE_LONG_LONG, 1, [Define if compiler supports long long]),,)