mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-16 12:21:18 +02:00
unposted: remove -Wno-implicit
This commit is contained in:
parent
c3c973a7d1
commit
def39b7cb7
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-05-31 Clint Adams <clint@zsh.org>
|
||||
|
||||
* unposted: zshconfig.ac: get rid of evil -Wno-implicit
|
||||
in CFLAGS.
|
||||
|
||||
2002-05-28 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 17244: Completion/Debian/Command/_dpkg:
|
||||
|
|
|
@ -292,13 +292,13 @@ dnl else use -O
|
|||
if test -n "$auto_cflags" && test ."$ansi2knr" != .yes; then
|
||||
if test "${enable_zsh_debug}" = yes; then
|
||||
if test -n "$GCC"; then
|
||||
CFLAGS="$CFLAGS -Wall -Wno-implicit -Wmissing-prototypes -ggdb"
|
||||
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -ggdb"
|
||||
else
|
||||
CFLAGS="$CFLAGS -g"
|
||||
fi
|
||||
else
|
||||
if test -n "$GCC"; then
|
||||
CFLAGS="$CFLAGS -Wall -Wno-implicit -Wmissing-prototypes -O2"
|
||||
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -O2"
|
||||
else
|
||||
CFLAGS="$CFLAGS -O"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue