fix
authorMiklos Szeredi <miklos@szeredi.hu>
Tue, 29 Nov 2005 11:04:27 +0000 (11:04 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Tue, 29 Nov 2005 11:04:27 +0000 (11:04 +0000)
ChangeLog
kernel/Makefile.in
kernel/configure.ac

index c024c77dcb2b05f886b1f81027225bb7b22e0e09..50bd2db6a9d870f9b6762bc3ad4d939529715f7d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
+
+       * Check if '-msoft-float' option is supported by compiler when
+       configuring for a 2.4.x kernel.  Bug report by Mark Haney
+
 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
 
        * Fix bug in 32-bit file handle compatibility
index 8bf108184bf7e5103e3ab3c6fbcecd412ae8bee1..34d376d685a387631c6197c323982d51ba76d035 100644 (file)
@@ -56,7 +56,7 @@ ifeq ($(majver), 2.4)
 
 CC = gcc
 LD = ld
-CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe -msoft-float
+CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe @KERNELCFLAGS@
 CPPFLAGS = -I@kernelsrc@/include -I. -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES -DFUSE_VERSION=\"$(VERSION)\" @KERNELCPPFLAGS@
 
 fuse_objs = dev.o dir.o file.o inode.o compat/parser.o
index dfe7b6736af61f4ff3a3be0fcdf619a91f3ae4e2..eca3a3b6f2a216da8fc7e204c92cfabed79149a7 100644 (file)
@@ -5,6 +5,7 @@ AC_PROG_INSTALL
 
 runver=`uname -r`
 ENABLE_FUSE_MODULE=y
+KERNELCFLAGS=
 
 kernelsrc=
 kernelbuild=
@@ -100,6 +101,14 @@ if test "$ENABLE_FUSE_MODULE" = y; then
                        AC_DEFINE(HAVE_RECALC_SIGPENDING_TSK, 1,
                                [Kernel has recalc_sigpending_tsk() function]),,
                        [#include <linux/sched.h>])
+               AC_MSG_CHECKING([if '-msoft-float' option is valid])
+               CFLAGS="-msoft-float"
+               have_msoft_float=no
+               AC_TRY_COMPILE([], [], [have_msoft_float=yes])
+               AC_MSG_RESULT([$have_msoft_float])
+               if test "$have_msoft_float" = yes; then
+                       KERNELCFLAGS="$CFLAGS"
+               fi
                CFLAGS="$old_cflags"
        else
                fuse_configured=no
@@ -161,6 +170,7 @@ if test "$ENABLE_FUSE_MODULE" = y; then
        fi
        AC_SUBST(KERNELMAKE_PARAMS)
        AC_SUBST(KERNELCPPFLAGS)
+       AC_SUBST(KERNELCFLAGS)
 fi
 
 AC_CONFIG_FILES([Makefile])