diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 4 insertions, 3 deletions
@@ -39,6 +39,8 @@ | |||
39 | - (dtucker) [openbsd-compat/bsd-statvfs.h] Only start including headers if we | 39 | - (dtucker) [openbsd-compat/bsd-statvfs.h] Only start including headers if we |
40 | need them to cut down on the name collisions. | 40 | need them to cut down on the name collisions. |
41 | - (dtucker) [configure.ac] Also look in inttypes.h for uintXX_t types. | 41 | - (dtucker) [configure.ac] Also look in inttypes.h for uintXX_t types. |
42 | - (dtucker) [configure.ac] Have --without-hardening not turn off | ||
43 | stack-protector since that has a separate flag that's been around a while. | ||
42 | 44 | ||
43 | 20140118 | 45 | 20140118 |
44 | - (djm) OpenBSD CVS Sync | 46 | - (djm) OpenBSD CVS Sync |
diff --git a/configure.ac b/configure.ac index 4f40afce3..f9d87e4b3 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.553 2014/01/17 08:17:35 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.554 2014/01/17 10:54:32 dtucker 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.553 $) | 18 | AC_REVISION($Revision: 1.554 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -134,7 +134,6 @@ AC_ARG_WITH([stackprotect], | |||
134 | AC_ARG_WITH([hardening], | 134 | AC_ARG_WITH([hardening], |
135 | [ --without-hardening Don't use toolchain hardening flags], [ | 135 | [ --without-hardening Don't use toolchain hardening flags], [ |
136 | if test "x$withval" = "xno"; then | 136 | if test "x$withval" = "xno"; then |
137 | use_stack_protector=0 | ||
138 | use_toolchain_hardening=0 | 137 | use_toolchain_hardening=0 |
139 | fi ]) | 138 | fi ]) |
140 | 139 | ||