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:
parent
5bab3ef814
commit
0a1b8b1511
2 changed files with 5 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue