mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- (dtucker) [configure.ac] bz#2073: look for Solaris' differently-named
libgss too. Patch from Pierre Ossman, ok djm.
This commit is contained in:
parent
964de184a8
commit
a2b5a4c746
@ -1,6 +1,8 @@
|
|||||||
20120222
|
20120222
|
||||||
- (dtucker) [Makefile.in configure.ac] bz#2072: don't link krb5 libs to
|
- (dtucker) [Makefile.in configure.ac] bz#2072: don't link krb5 libs to
|
||||||
ssh(1) since they're not needed. Patch from Pierre Ossman.
|
ssh(1) since they're not needed. Patch from Pierre Ossman, ok djm.
|
||||||
|
- (dtucker) [configure.ac] bz#2073: look for Solaris' differently-named
|
||||||
|
libgss too. Patch from Pierre Ossman, ok djm.
|
||||||
|
|
||||||
20130221
|
20130221
|
||||||
- (tim) [regress/forward-control.sh] shell portability fix.
|
- (tim) [regress/forward-control.sh] shell portability fix.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# $Id: configure.ac,v 1.506 2013/02/21 23:40:00 dtucker Exp $
|
# $Id: configure.ac,v 1.507 2013/02/21 23:43:16 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
@ -15,7 +15,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
|
||||||
AC_REVISION($Revision: 1.506 $)
|
AC_REVISION($Revision: 1.507 $)
|
||||||
AC_CONFIG_SRCDIR([ssh.c])
|
AC_CONFIG_SRCDIR([ssh.c])
|
||||||
AC_LANG([C])
|
AC_LANG([C])
|
||||||
|
|
||||||
@ -3675,8 +3675,12 @@ AC_ARG_WITH([kerberos5],
|
|||||||
[ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
|
[ AC_CHECK_LIB([gssapi], [gss_init_sec_context],
|
||||||
[ AC_DEFINE([GSSAPI])
|
[ AC_DEFINE([GSSAPI])
|
||||||
GSSLIBS="-lgssapi" ],
|
GSSLIBS="-lgssapi" ],
|
||||||
|
[ AC_CHECK_LIB([gss], [gss_init_sec_context],
|
||||||
|
[ AC_DEFINE([GSSAPI])
|
||||||
|
GSSLIBS="-lgss" ],
|
||||||
AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
|
AC_MSG_WARN([Cannot find any suitable gss-api library - build may fail]))
|
||||||
])
|
])
|
||||||
|
])
|
||||||
|
|
||||||
AC_CHECK_HEADER([gssapi.h], ,
|
AC_CHECK_HEADER([gssapi.h], ,
|
||||||
[ unset ac_cv_header_gssapi_h
|
[ unset ac_cv_header_gssapi_h
|
||||||
|
Loading…
x
Reference in New Issue
Block a user