1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-09 00:11:25 +02:00

unposted: get rid of evil -Wno-implicit in CFLAGS

This commit is contained in:
Clint Adams 2001-12-15 17:33:12 +00:00
parent d01de9e7b7
commit 2c71f2ce29
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2001-12-15 Clint Adams <clint@zsh.org>
* unposted: zshconfig.ac: get rid of evil -Wno-implicit
in CFLAGS.
2001-12-14 Clint Adams <clint@zsh.org> 2001-12-14 Clint Adams <clint@zsh.org>
* 16336: Completion/Debian/Type/_deb_packages: * 16336: Completion/Debian/Type/_deb_packages:

View file

@ -292,13 +292,13 @@ dnl else use -O
if test -n "$auto_cflags"; then if test -n "$auto_cflags"; then
if test "${enable_zsh_debug}" = yes; then if test "${enable_zsh_debug}" = yes; then
if test -n "$GCC"; then if test -n "$GCC"; then
CFLAGS="$CFLAGS -Wall -Wno-implicit -Wmissing-prototypes -ggdb" CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -ggdb"
else else
CFLAGS="$CFLAGS -g" CFLAGS="$CFLAGS -g"
fi fi
else else
if test -n "$GCC"; then if test -n "$GCC"; then
CFLAGS="$CFLAGS -Wall -Wno-implicit -Wmissing-prototypes -O2" CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -O2"
else else
CFLAGS="$CFLAGS -O" CFLAGS="$CFLAGS -O"
fi fi