summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-08-23 23:52:36 +0100
committerColin Watson <cjwatson@debian.org>2010-08-23 23:52:36 +0100
commit78799892cb1858927be02be9737c594052e3f910 (patch)
treeac3dc2e848ab9dc62fe4252e01e52c3d456f628f /configure
parent3875951bb76a9ec62634ae4026c9cc885d933477 (diff)
parent31e30b835fd9695d3b6647cab4867001b092e28f (diff)
* New upstream release (http://www.openssh.com/txt/release-5.6):
- Added a ControlPersist option to ssh_config(5) that automatically starts a background ssh(1) multiplex master when connecting. This connection can stay alive indefinitely, or can be set to automatically close after a user-specified duration of inactivity (closes: #335697, #350898, #454787, #500573, #550262). - Support AuthorizedKeysFile, AuthorizedPrincipalsFile, HostbasedUsesNameFromPacketOnly, and PermitTunnel in sshd_config(5) Match blocks (closes: #549858). - sftp(1): fix ls in working directories that contain globbing characters in their pathnames (LP: #530714).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure b/configure
index 5ebdb15c6..ef3bb0f0f 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
1#! /bin/sh 1#! /bin/sh
2# From configure.ac Revision: 1.449 . 2# From configure.ac Revision: 1.451 .
3# Guess values for system-dependent variables and create Makefiles. 3# Guess values for system-dependent variables and create Makefiles.
4# Generated by GNU Autoconf 2.61 for OpenSSH Portable. 4# Generated by GNU Autoconf 2.61 for OpenSSH Portable.
5# 5#
@@ -13078,6 +13078,7 @@ fi
13078 13078
13079 13079
13080 13080
13081
13081for ac_func in \ 13082for ac_func in \
13082 arc4random \ 13083 arc4random \
13083 arc4random_buf \ 13084 arc4random_buf \
@@ -13158,6 +13159,7 @@ for ac_func in \
13158 strlcpy \ 13159 strlcpy \
13159 strmode \ 13160 strmode \
13160 strnvis \ 13161 strnvis \
13162 strptime \
13161 strtonum \ 13163 strtonum \
13162 strtoll \ 13164 strtoll \
13163 strtoul \ 13165 strtoul \
@@ -16492,6 +16494,12 @@ if test "${with_ssl_dir+set}" = set; then
16492 else 16494 else
16493 LDFLAGS="-L${withval}/lib ${LDFLAGS}" 16495 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
16494 fi 16496 fi
16497 elif test -d "$withval/lib64"; then
16498 if test -n "${need_dash_r}"; then
16499 LDFLAGS="-L${withval}/lib64 -R${withval}/lib64 ${LDFLAGS}"
16500 else
16501 LDFLAGS="-L${withval}/lib64 ${LDFLAGS}"
16502 fi
16495 else 16503 else
16496 if test -n "${need_dash_r}"; then 16504 if test -n "${need_dash_r}"; then
16497 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}" 16505 LDFLAGS="-L${withval} -R${withval} ${LDFLAGS}"