From 1fcec9d4f265e38af248c4c845986ca8c174bd68 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Thu, 19 Dec 2013 11:00:12 +1100 Subject: - (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. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c8d4bfc6b..d37a211ed 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) -- cgit v1.2.3