1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* configure.in: Don't use -Wstrict-prototypes after all.

* configure: Regenerated.
This commit is contained in:
Jim Blandy 1998-07-30 14:26:51 +00:00
parent 5bab3ef814
commit 0a1b8b1511
2 changed files with 5 additions and 2 deletions

2
configure vendored
View file

@ -4382,7 +4382,7 @@ fi
## If we're using GCC, ask for aggressive warnings.
case "$GCC" in
yes )
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes" ;;
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
esac
for ac_prog in mawk gawk nawk awk

View file

@ -373,7 +373,10 @@ fi
## If we're using GCC, ask for aggressive warnings.
case "$GCC" in
yes )
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes" ;;
## 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" ;;
esac
AC_PROG_AWK