From b7ef7e8264903c0721fe425f00ddc4eeed44d429 Mon Sep 17 00:00:00 2001 From: jjgarcia Date: Tue, 15 Nov 2005 19:12:35 +0000 Subject: [PATCH] Build the Alpha port with IEEE floating point arithmetics --- src/aclocal.m4 | 4 ++++ src/configure | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 9378908c4..a6c73f6d7 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -267,6 +267,10 @@ case "${host_os}" in shared="no" ;; esac +case "${host_cpu}" in + alpha*) + CFLAGS="${CFLAGS} -mieee";; +esac ECL_CFLAGS="-D${thehost}" AC_MSG_CHECKING(for ld flags when building shared libraries) if test "${enable_shared}" = "yes"; then diff --git a/src/configure b/src/configure index 49f598b81..88c999103 100755 --- a/src/configure +++ b/src/configure @@ -3592,6 +3592,10 @@ case "${host_os}" in shared="no" ;; esac +case "${host_cpu}" in + alpha*) + CFLAGS="${CFLAGS} -mieee";; +esac ECL_CFLAGS="-D${thehost}" echo "$as_me:$LINENO: checking for ld flags when building shared libraries" >&5 echo $ECHO_N "checking for ld flags when building shared libraries... $ECHO_C" >&6