diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2002-05-31 19:47:21 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2002-05-31 19:47:21 +0000 |
| commit | def39b7cb78355cd855d858f204126c577b49b0e (patch) | |
| tree | 8b5b0fd535e06e62c17e3d99fed63e3ccc1281da | |
| parent | 17244: don't complete udebs for --unpack or -i. (diff) | |
| download | zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar.gz zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar.bz2 zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar.lz zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar.xz zsh-def39b7cb78355cd855d858f204126c577b49b0e.tar.zst zsh-def39b7cb78355cd855d858f204126c577b49b0e.zip | |
unposted: remove -Wno-implicit
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | zshconfig.ac | 4 |
2 files changed, 7 insertions, 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: diff --git a/zshconfig.ac b/zshconfig.ac index eeb1b3026..b47b21307 100644 --- a/zshconfig.ac +++ b/zshconfig.ac @@ -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 |
