guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Patch] Only use -Werror with gcc


From: Matthias Koeppe
Subject: [Patch] Only use -Werror with gcc
Date: Tue, 17 Jun 2003 13:52:46 +0200

Guile from CVS HEAD does not build with non-gcc compilers because the
-Werror flag is passed to the compiler when GUILE_ERROR_ON_WARNING is
yes (the default).

Here is a patch.

(Does anybody test Guile with non-gcc compilers?)

--- configure.in.~1.220.~       Mon Jun 16 16:49:24 2003
+++ configure.in        Tue Jun 17 13:39:37 2003
@@ -969,15 +969,6 @@
 fi
 AC_SUBST(GUILE_FOR_BUILD)
                        
-# Do this here so we don't screw up any of the tests above that might
-# not be "warning free"
-
-if test "${GUILE_ERROR_ON_WARNING}" = yes
-then
-  CFLAGS="${CFLAGS} -Werror"
-  enable_compile_warnings=no
-fi
-
 ## If we're using GCC, ask for aggressive warnings.
 case "$GCC" in
   yes )
@@ -986,7 +977,15 @@
     ## less than exasperating.
     ## -Wpointer-arith was here too, but something changed in gcc/glibc
     ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
-    CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
+    CFLAGS="$CFLAGS -Wall -Wmissing-prototypes"
+    # Do this here so we don't screw up any of the tests above that might
+    # not be "warning free"
+    if test "${GUILE_ERROR_ON_WARNING}" = yes
+    then
+       CFLAGS="${CFLAGS} -Werror"
+       enable_compile_warnings=no
+    fi
+    ;;
 esac
 
 ## NOTE the code below sets LIBOBJS directly and so is now forbidden

-- 
Matthias Köppe -- http://www.math.uni-magdeburg.de/~mkoeppe




reply via email to

[Prev in Thread] Current Thread [Next in Thread]