diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-09-17 13:42:05 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-09-17 13:42:05 +0000 |
commit | 95a55f55661eb39071b7219460e42dd3af784d56 (patch) | |
tree | 8a25ce6dd864eae9f4310704b4c0f26aa9bfc928 | |
parent | 09e69605b16070de8ce317d86ad736d665a58906 (diff) |
2002-09-17 Marcus Brinkmann <marcus@gnu.org>
* Makefile: For now, filter -std=gnu99 out of CPPFLAGS.
-rw-r--r-- | pfinet/ChangeLog | 4 | ||||
-rw-r--r-- | pfinet/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/pfinet/ChangeLog b/pfinet/ChangeLog index 78a5a4f7..09df5fbe 100644 --- a/pfinet/ChangeLog +++ b/pfinet/ChangeLog @@ -1,3 +1,7 @@ +2002-09-17 Marcus Brinkmann <marcus@gnu.org> + + * Makefile: For now, filter -std=gnu99 out of CPPFLAGS. + 2002-06-15 Roland McGrath <roland@frob.com> * socket-ops.c (S_socket_getopt): Use a local int for result param of diff --git a/pfinet/Makefile b/pfinet/Makefile index b81d3073..c3ae4c50 100644 --- a/pfinet/Makefile +++ b/pfinet/Makefile @@ -95,6 +95,10 @@ CPPFLAGS += -imacros $(srcdir)/config.h \ -I$(srcdir)/glue-include \ -I$(srcdir)/linux-src/include +# GCC 3.2 is a bit buggy. See #7946 and #7947 in GCC's GNATS +# database. +CPPFLAGS := $(filter-out -std=gnu99, $(CPPFLAGS)) + asm/checksum.h: ../config.status mkdir -p $(@D) echo > $@.new \ |