summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-12-08 09:35:36 +1100
committerDamien Miller <djm@mindrot.org>2008-12-08 09:35:36 +1100
commit7df2e400745219a87f9a9e445a9b89661d6fec42 (patch)
tree38e17bb1d3fc7c42b1d3f31eae49033d20b5ef10
parent23645649bb97d510a7eab33d36882ef34d2e2d1f (diff)
- (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
use some stack in main(). Report and suggested fix from vapier AT gentoo.org
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac14
2 files changed, 13 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 8915d9a69..91fca57aa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120081208
2 - (djm) [configure.ac] bz#1538: better test for ProPolice/SSP: actually
3 use some stack in main().
4 Report and suggested fix from vapier AT gentoo.org
5
120081201 620081201
2 - (dtucker) [contrib/cygwin/{Makefile,ssh-host-config}] Add new doc files 7 - (dtucker) [contrib/cygwin/{Makefile,ssh-host-config}] Add new doc files
3 and tweak the is-sshd-running check in ssh-host-config. Patch from 8 and tweak the is-sshd-running check in ssh-host-config. Patch from
@@ -4945,5 +4950,5 @@
4945 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4950 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4946 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4951 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4947 4952
4948$Id: ChangeLog,v 1.5147 2008/12/01 10:42:13 dtucker Exp $ 4953$Id: ChangeLog,v 1.5148 2008/12/07 22:35:36 djm Exp $
4949 4954
diff --git a/configure.ac b/configure.ac
index 3e0821bae..43732abb8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.410 2008/11/19 05:26:42 tim Exp $ 1# $Id: configure.ac,v 1.411 2008/12/07 22:35:36 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
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.410 $) 18AC_REVISION($Revision: 1.411 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -126,7 +126,7 @@ int main(void){char b[10]; memset(b, 0, sizeof(b));}
126 126
127 # -fstack-protector-all doesn't always work for some GCC versions 127 # -fstack-protector-all doesn't always work for some GCC versions
128 # and/or platforms, so we test if we can. If it's not supported 128 # and/or platforms, so we test if we can. If it's not supported
129 # on a give platform gcc will emit a warning so we use -Werror. 129 # on a given platform gcc will emit a warning so we use -Werror.
130 if test "x$use_stack_protector" = "x1"; then 130 if test "x$use_stack_protector" = "x1"; then
131 for t in -fstack-protector-all -fstack-protector; do 131 for t in -fstack-protector-all -fstack-protector; do
132 AC_MSG_CHECKING(if $CC supports $t) 132 AC_MSG_CHECKING(if $CC supports $t)
@@ -136,8 +136,8 @@ int main(void){char b[10]; memset(b, 0, sizeof(b));}
136 LDFLAGS="$LDFLAGS $t -Werror" 136 LDFLAGS="$LDFLAGS $t -Werror"
137 AC_LINK_IFELSE( 137 AC_LINK_IFELSE(
138 [AC_LANG_SOURCE([ 138 [AC_LANG_SOURCE([
139#include <stdlib.h> 139#include <stdio.h>
140int main(void){return 0;} 140int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
141 ])], 141 ])],
142 [ AC_MSG_RESULT(yes) 142 [ AC_MSG_RESULT(yes)
143 CFLAGS="$saved_CFLAGS $t" 143 CFLAGS="$saved_CFLAGS $t"
@@ -145,8 +145,8 @@ int main(void){return 0;}
145 AC_MSG_CHECKING(if $t works) 145 AC_MSG_CHECKING(if $t works)
146 AC_RUN_IFELSE( 146 AC_RUN_IFELSE(
147 [AC_LANG_SOURCE([ 147 [AC_LANG_SOURCE([
148#include <stdlib.h> 148#include <stdio.h>
149int main(void){exit(0);} 149int main(void){char x[[256]]; snprintf(x, sizeof(x), "XXX"); return 0;}
150 ])], 150 ])],
151 [ AC_MSG_RESULT(yes) 151 [ AC_MSG_RESULT(yes)
152 break ], 152 break ],