mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-13 07:10:20 +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.
|
## If we're using GCC, ask for aggressive warnings.
|
||||||
case "$GCC" in
|
case "$GCC" in
|
||||||
yes )
|
yes )
|
||||||
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes" ;;
|
CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
for ac_prog in mawk gawk nawk awk
|
for ac_prog in mawk gawk nawk awk
|
||||||
|
|
|
@ -373,7 +373,10 @@ fi
|
||||||
## If we're using GCC, ask for aggressive warnings.
|
## If we're using GCC, ask for aggressive warnings.
|
||||||
case "$GCC" in
|
case "$GCC" in
|
||||||
yes )
|
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
|
esac
|
||||||
|
|
||||||
AC_PROG_AWK
|
AC_PROG_AWK
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue