summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-02-22 10:43:15 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-02-22 10:43:15 +1100
commita2b5a4c746871bd32a12a00548ccf1a9c3c21101 (patch)
treeb892df2e399ea394ef471ea6047dc78972aa029a
parent964de184a8bbb85b1992176c28963f6115c780e1 (diff)
- (dtucker) [configure.ac] bz#2073: look for Solaris' differently-named
libgss too. Patch from Pierre Ossman, ok djm.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac10
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 706ec6262..d67e550c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120120222 120120222
2 - (dtucker) [Makefile.in configure.ac] bz#2072: don't link krb5 libs to 2 - (dtucker) [Makefile.in configure.ac] bz#2072: don't link krb5 libs to
3 ssh(1) since they're not needed. Patch from Pierre Ossman. 3 ssh(1) since they're not needed. Patch from Pierre Ossman, ok djm.
4 - (dtucker) [configure.ac] bz#2073: look for Solaris' differently-named
5 libgss too. Patch from Pierre Ossman, ok djm.
4 6
520130221 720130221
6 - (tim) [regress/forward-control.sh] shell portability fix. 8 - (tim) [regress/forward-control.sh] shell portability fix.
diff --git a/configure.ac b/configure.ac
index 088bcb652..6c11f0b90 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.506 2013/02/21 23:40:00 dtucker Exp $ 1# $Id: configure.ac,v 1.507 2013/02/21 23:43:16 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
17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) 17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
18AC_REVISION($Revision: 1.506 $) 18AC_REVISION($Revision: 1.507 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -3675,7 +3675,11 @@ AC_ARG_WITH([kerberos5],
3675 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context], 3675 [ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
3676 [ AC_DEFINE([GSSAPI]) 3676 [ AC_DEFINE([GSSAPI])
3677 GSSLIBS="-lgssapi" ], 3677 GSSLIBS="-lgssapi" ],
3678 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail])) 3678 [ AC_CHECK_LIB([gss], [gss_init_sec_context],
3679 [ AC_DEFINE([GSSAPI])
3680 GSSLIBS="-lgss" ],
3681 AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
3682 ])
3679 ]) 3683 ])
3680 3684
3681 AC_CHECK_HEADER([gssapi.h], , 3685 AC_CHECK_HEADER([gssapi.h], ,