summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2008-08-26 23:48:20 -0300
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2008-08-26 23:48:20 -0300
commitf85ea2a85fcdd051f432964806f044c0301d0945 (patch)
tree20decfbba946d6d5aa9dacea2e38c917a42d30ff
parent487b9dec2ea6b88ddbc6fbd17f445ddb197aebc5 (diff)
parent582a4997abc8b34ac6caf374fda8ea3ac65bd571 (diff)
downloadguile-f85ea2a85fcdd051f432964806f044c0301d0945.tar.gz
Merge branch 'master' of git://git.sv.gnu.org/guile into nits
-rw-r--r--ChangeLog6
-rw-r--r--configure.in6
-rw-r--r--libguile/ChangeLog5
-rw-r--r--libguile/Makefile.am6
-rw-r--r--srfi/ChangeLog4
-rw-r--r--srfi/Makefile.am2
-rw-r--r--test-suite/ChangeLog4
-rw-r--r--test-suite/standalone/Makefile.am2
8 files changed, 30 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index acbaccb3b..9d3c44817 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-25 Ludovic Courtès <ludo@gnu.org>
+
+ * configure.in (GCC_CFLAGS): New variable. Store GCC flags like
+ `-Werror' inside it so that they are not used when compiling
+ Gnulib modules.
+
2008-08-21 Ludovic Courtès <ludo@gnu.org>
* autogen.sh: Don't use `gnulib-tool', use the Gnulib files
diff --git a/configure.in b/configure.in
index ede0d15c1..fcccb2048 100644
--- a/configure.in
+++ b/configure.in
@@ -1417,17 +1417,19 @@ case "$GCC" in
## 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"
+ GCC_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"
+ GCC_CFLAGS="${GCC_CFLAGS} -Werror"
enable_compile_warnings=no
fi
;;
esac
+AC_SUBST(GCC_CFLAGS)
+
## If we're creating a shared library (using libtool!), then we'll
## need to generate a list of .lo files corresponding to the .o files
## given in LIBOBJS. We'll call it LIBLOBJS.
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index 518dcd466..a3c9767f9 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-25 Ludovic Courtès <ludo@gnu.org>
+
+ * Makefile.am (AM_CFLAGS): New.
+ (guile_CFLAGS, libguile_la_CFLAGS): Use it.
+
2008-08-20 Ludovic Courtès <ludo@gnu.org>
* eval.c, filesys.c, gc.c, numbers.c, stime.c, threads.c: Don't
diff --git a/libguile/Makefile.am b/libguile/Makefile.am
index a68ebbaa2..579ae89a2 100644
--- a/libguile/Makefile.am
+++ b/libguile/Makefile.am
@@ -35,6 +35,8 @@ DEFAULT_INCLUDES =
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
-I$(top_srcdir)/lib -I$(top_builddir)/lib
+AM_CFLAGS = $(GCC_CFLAGS)
+
## The Gnulib Libtool archive.
gnulib_library = $(top_builddir)/lib/libgnu.la
@@ -97,11 +99,11 @@ guile_filter_doc_snarfage$(EXEEXT): $(guile_filter_doc_snarfage_OBJECTS) $(guile
guile_SOURCES = guile.c
-guile_CFLAGS = $(GUILE_CFLAGS)
+guile_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
guile_LDADD = libguile.la
guile_LDFLAGS = @DLPREOPEN@ $(GUILE_CFLAGS)
-libguile_la_CFLAGS = $(GUILE_CFLAGS)
+libguile_la_CFLAGS = $(GUILE_CFLAGS) $(AM_CFLAGS)
libguile_la_SOURCES = alist.c arbiters.c async.c backtrace.c boolean.c \
chars.c continuations.c convert.c debug.c deprecation.c \
diff --git a/srfi/ChangeLog b/srfi/ChangeLog
index f35b25e16..5cba7e7b5 100644
--- a/srfi/ChangeLog
+++ b/srfi/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-25 Ludovic Courtès <ludo@gnu.org>
+
+ * Makefile.am (AM_CFLAGS): New.
+
2008-06-28 Ludovic Courtès <ludo@gnu.org>
* Makefile.am (INCLUDES): Renamed to...
diff --git a/srfi/Makefile.am b/srfi/Makefile.am
index 64858cd27..bb69bbbf2 100644
--- a/srfi/Makefile.am
+++ b/srfi/Makefile.am
@@ -29,6 +29,8 @@ DEFS = @DEFS@ @EXTRA_DEFS@
AM_CPPFLAGS = -I.. -I$(srcdir)/.. \
-I$(top_srcdir)/lib -I$(top_builddir)/lib
+AM_CFLAGS = $(GCC_CFLAGS)
+
srfiincludedir = $(pkgincludedir)/srfi
# These headers are visible as <guile/srfi/mumble.h>
diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog
index 0d6b54c9a..1c2ff80f2 100644
--- a/test-suite/ChangeLog
+++ b/test-suite/ChangeLog
@@ -1,3 +1,7 @@
+2008-08-25 Ludovic Courtès <ludo@gnu.org>
+
+ * standalone/Makefile.am (test_cflags): Add `$(GCC_CFLAGS)'.
+
2008-08-19 Ludovic Courtès <ludo@gnu.org>
* tests/goops.test (object update)[changing class, `hell' in
diff --git a/test-suite/standalone/Makefile.am b/test-suite/standalone/Makefile.am
index ae68d5fe1..adbe0c84f 100644
--- a/test-suite/standalone/Makefile.am
+++ b/test-suite/standalone/Makefile.am
@@ -34,7 +34,7 @@ test_cflags = \
-I$(top_srcdir)/test-suite/standalone \
-I$(top_srcdir) \
-I$(top_srcdir)/lib -I$(top_builddir)/lib \
- $(EXTRA_DEFS) $(GUILE_CFLAGS)
+ $(EXTRA_DEFS) $(GUILE_CFLAGS) $(GCC_CFLAGS)
AM_LDFLAGS = $(GUILE_CFLAGS)