diff options
author | Damien Miller <djm@mindrot.org> | 2011-01-12 13:34:02 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2011-01-12 13:34:02 +1100 |
commit | 945aa0c744ea99544fdf7f868ff9cce0193c9fdd (patch) | |
tree | 22ac1411121969c3726c752d580e258947628898 /configure.ac | |
parent | 4927aaf4460de407855676a0ad36bf39704e74a2 (diff) | |
download | openssh-git-945aa0c744ea99544fdf7f868ff9cce0193c9fdd.tar.gz |
- (djm) [configure.ac] Turn on -Wno-unused-result for gcc >= 4.4 to avoid
silly warnings on write() calls we don't care succeed or not.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 0eeb4df7..020634b5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.461 2011/01/03 21:16:29 djm Exp $ +# $Id: configure.ac,v 1.462 2011/01/12 02:34:02 djm Exp $ # # Copyright (c) 1999-2004 Damien Miller # @@ -15,7 +15,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) -AC_REVISION($Revision: 1.461 $) +AC_REVISION($Revision: 1.462 $) AC_CONFIG_SRCDIR([ssh.c]) AC_CONFIG_HEADER(config.h) @@ -124,7 +124,8 @@ if test "$GCC" = "yes" || test "$GCC" = "egcs"; then ;; 2.*) no_attrib_nonnull=1 ;; 3.*) CFLAGS="$CFLAGS -Wsign-compare -Wformat-security" ;; - 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security -fno-strict-aliasing" ;; + 4.[0123]|4.[0123].*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security -fno-strict-aliasing" ;; + 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security -fno-strict-aliasing -Wno-unused-result" ;; *) ;; esac |