summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-08-09 11:23:24 +1000
committerNeil Brown <neilb@suse.de>2007-08-09 11:23:24 +1000
commitfa0a9b564d895a2b3cff85b976baad6dcb7d7d2c (patch)
tree13ae5956777900c193ec13f78b963c9822b2e557
parentd235c98d94c70b175c195d00cebbc190f61a6380 (diff)
downloadnfs-utils-fa0a9b564d895a2b3cff85b976baad6dcb7d7d2c.tar.gz
nfs-utils-fa0a9b564d895a2b3cff85b976baad6dcb7d7d2c.tar.xz
nfs-utils-fa0a9b564d895a2b3cff85b976baad6dcb7d7d2c.zip
Remove ARCH-specific compile flags for ALPHA.
-mno-fp-regs -ffixed-8 are used for compiling the kernel on alphas, and it seems they were copied into nfs-utils long ago, even though they have no relevance now. As we now use floating point (just a little bit in nfsstat), remove these pointless flags.
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 16d0da6..1d07cd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -326,9 +326,9 @@ dnl *************************************************************
dnl Use architecture-specific compile flags
dnl (We use $host and not $build in case we are cross-compiling)
dnl *************************************************************
+dnl Note: we no longer have arch specific compile flags, but
+dnl the stub is left here in case they are needed one day.
case $host in
- alpha*)
- ARCHFLAGS="-mno-fp-regs -ffixed-8" ;;
*)
ARCHFLAGS="" ;;
esac