1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-01 09:50:19 +02:00

* configure.in (CFLAGS): don't add -Wpointer-arith, since it

causes numerous spurious warnings with recent gcc and/or glibc
	versions.
This commit is contained in:
Gary Houston 1999-12-09 19:48:41 +00:00
parent 694577b9e5
commit aee8ca3fcb
2 changed files with 9 additions and 1 deletions

View file

@ -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.

View file

@ -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