summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2012-02-24 10:40:41 +1100
committerDarren Tucker <dtucker@zip.com.au>2012-02-24 10:40:41 +1100
commit93a2d41505981a9f4fd5f1cffec713622215910e (patch)
tree90334628420d9d4366f804a9bd53717251fd5d68 /configure.ac
parenta3f297de91b58282e16f70efdceab9715f0068fb (diff)
- (dtucker) [audit-bsm.c configure.ac] bug #1968: enable workarounds for BSM
audit breakage in Solaris 11. Patch from Magnus Johansson.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 54fc7d0cf..acf529b04 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.486 2012/01/17 03:03:37 dtucker Exp $ 1# $Id: configure.ac,v 1.487 2012/02/23 23:40:43 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.486 $) 18AC_REVISION($Revision: 1.487 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -1434,6 +1434,11 @@ AC_ARG_WITH([audit],
1434 # These are optional 1434 # These are optional
1435 AC_CHECK_FUNCS([getaudit_addr aug_get_machine]) 1435 AC_CHECK_FUNCS([getaudit_addr aug_get_machine])
1436 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module]) 1436 AC_DEFINE([USE_BSM_AUDIT], [1], [Use BSM audit module])
1437 if test "$sol2ver" -eq 11; then
1438 SSHDLIBS="$SSHDLIBS -lscf"
1439 AC_DEFINE([BROKEN_BSM_API], [1],
1440 [The system has incomplete BSM API])
1441 fi
1437 ;; 1442 ;;
1438 linux) 1443 linux)
1439 AC_MSG_RESULT([linux]) 1444 AC_MSG_RESULT([linux])