diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -27,6 +27,7 @@ | |||
27 | compilers. OK djm@ | 27 | compilers. OK djm@ |
28 | - (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure | 28 | - (djm) [ssh-rand-helper.c] declare optind, avoiding compilation failure |
29 | on some platforms | 29 | on some platforms |
30 | - (djm) [configure.ac] set -fno-strict-aliasing for gcc4; ok dtucker@ | ||
30 | 31 | ||
31 | 20100304 | 32 | 20100304 |
32 | - (djm) [ssh-keygen.c] Use correct local variable, instead of | 33 | - (djm) [ssh-keygen.c] Use correct local variable, instead of |
diff --git a/configure.ac b/configure.ac index f4c25683c..a9960a7ba 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.443 2010/02/11 23:11:34 djm Exp $ | 1 | # $Id: configure.ac,v 1.444 2010/03/05 04:04:35 djm Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) | 17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) |
18 | AC_REVISION($Revision: 1.443 $) | 18 | AC_REVISION($Revision: 1.444 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -108,7 +108,7 @@ if test "$GCC" = "yes" || test "$GCC" = "egcs"; then | |||
108 | ;; | 108 | ;; |
109 | 2.*) no_attrib_nonnull=1 ;; | 109 | 2.*) no_attrib_nonnull=1 ;; |
110 | 3.*) CFLAGS="$CFLAGS -Wsign-compare -Wformat-security" ;; | 110 | 3.*) CFLAGS="$CFLAGS -Wsign-compare -Wformat-security" ;; |
111 | 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security" ;; | 111 | 4.*) CFLAGS="$CFLAGS -Wsign-compare -Wno-pointer-sign -Wformat-security -fno-strict-aliasing" ;; |
112 | *) ;; | 112 | *) ;; |
113 | esac | 113 | esac |
114 | 114 | ||