summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Houston <ghouston@arglist.com>1999-12-09 19:48:41 +0000
committerGary Houston <ghouston@arglist.com>1999-12-09 19:48:41 +0000
commitaee8ca3fcbbcf4ed66c098070706efd2a6755a7e (patch)
tree33cef2e8fc49cbbb431d090eba631a6947df2d39
parent694577b9e5ea427e0956a4b098fb47961b6b5b29 (diff)
downloadguile-aee8ca3fcbbcf4ed66c098070706efd2a6755a7e.tar.gz
* configure.in (CFLAGS): don't add -Wpointer-arith, since it
causes numerous spurious warnings with recent gcc and/or glibc versions.
-rw-r--r--ChangeLog6
-rw-r--r--configure.in4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 61ace9fa5..48adfbbd0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+1999-12-09 Gary Houston <ghouston@freewire.co.uk>
+
+ * configure.in (CFLAGS): don't add -Wpointer-arith, since it
+ causes numerous spurious warnings with recent gcc and/or glibc
+ versions.
+
1999-11-19 Gary Houston <ghouston@freewire.co.uk>
* acconfig.h: add HAVE_ARRAYS.
diff --git a/configure.in b/configure.in
index da5b01673..818a5bbf6 100644
--- a/configure.in
+++ b/configure.in
@@ -421,7 +421,9 @@ case "$GCC" in
## We had -Wstrict-prototypes in here for a bit, but Guile does too
## much stuff with generic function pointers for that to really be
## less than exasperating.
- CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
+ ## -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" ;;
esac
AC_PROG_AWK