summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index f49f4014..e1985abb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20080102
+ - (dtucker) [configure.ac] Fix message for -fstack-protector-all test.
+
20080101
- (dtucker) OpenBSD CVS Sync
- dtucker@cvs.openbsd.org 2007/12/31 10:41:31
@@ -3516,4 +3519,4 @@
OpenServer 6 and add osr5bigcrypt support so when someone migrates
passwords between UnixWare and OpenServer they will still work. OK dtucker@
-$Id: ChangeLog,v 1.4816 2008/01/01 13:09:16 dtucker Exp $
+$Id: ChangeLog,v 1.4817 2008/01/02 07:08:45 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 479d6282..484d45d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.388 2007/12/31 10:29:26 dtucker Exp $
+# $Id: configure.ac,v 1.389 2008/01/02 07:08:45 dtucker 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.388 $)
+AC_REVISION($Revision: 1.389 $)
AC_CONFIG_SRCDIR([ssh.c])
AC_CONFIG_HEADER(config.h)
@@ -105,7 +105,7 @@ if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
*) ;;
esac
- AC_MSG_CHECKING(if $GCC understands -fstack-protector-all)
+ AC_MSG_CHECKING(if $CC understands -fstack-protector-all)
saved_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -fstack-protector-all"
AC_TRY_COMPILE([], [ int main(void){return 0;} ],