diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-12-15 17:33:12 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-12-15 17:33:12 +0000 |
commit | 2c71f2ce29055c14083de7cc62b0bd6e652c712f (patch) | |
tree | c77affd8af12162870e366ea7694bcfc6b5a96df | |
parent | d01de9e7b7fab5aa132ec53861e103b1bdcb2910 (diff) | |
download | zsh-2c71f2ce29055c14083de7cc62b0bd6e652c712f.tar.gz zsh-2c71f2ce29055c14083de7cc62b0bd6e652c712f.tar.xz zsh-2c71f2ce29055c14083de7cc62b0bd6e652c712f.zip |
unposted: get rid of evil -Wno-implicit in CFLAGS
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | zshconfig.ac | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index bcccf3a4d..b090e5326 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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> * 16336: Completion/Debian/Type/_deb_packages: diff --git a/zshconfig.ac b/zshconfig.ac index 4e1a0d882..2ec80f134 100644 --- a/zshconfig.ac +++ b/zshconfig.ac @@ -292,13 +292,13 @@ dnl else use -O if test -n "$auto_cflags"; 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 |