mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-30 13:42:01 +00:00
- (dtucker) [configure.ac] bz#2178: Don't try to use BSM on Solaris versions
greater than 11 either rather than just 11. Patch from Tomas Kuthan.
This commit is contained in:
parent
6674eb9683
commit
1fcec9d4f2
@ -1,3 +1,7 @@
|
||||
20131219
|
||||
- (dtucker) [configure.ac] bz#2178: Don't try to use BSM on Solaris versions
|
||||
greater than 11 either rather than just 11. Patch from Tomas Kuthan.
|
||||
|
||||
20131218
|
||||
- (djm) OpenBSD CVS Sync
|
||||
- djm@cvs.openbsd.org 2013/12/07 08:08:26
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $Id: configure.ac,v 1.546 2013/12/07 00:51:51 djm Exp $
|
||||
# $Id: configure.ac,v 1.547 2013/12/19 00:00:12 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.546 $)
|
||||
AC_REVISION($Revision: 1.547 $)
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
AC_LANG([C])
|
||||
|
||||
@ -1501,7 +1501,7 @@ AC_ARG_WITH([audit],
|
||||
# These are optional
|
||||
AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
|
||||
AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
|
||||
if test "$sol2ver" -eq 11; then
|
||||
if test "$sol2ver" -ge 11; then
|
||||
SSHDLIBS="$SSHDLIBS -lscf"
|
||||
AC_DEFINE([BROKEN_BSM_API], [1],
|
||||
[The system has incomplete BSM API])
|
||||
|
Loading…
Reference in New Issue
Block a user