summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2005-08-09 10:09:53 -0700
committerTim Rice <tim@multitalents.net>2005-08-09 10:09:53 -0700
commit8bc6b900ed8609d67e75bc7266b9b533a703eb4a (patch)
tree7b139765e4f9493afbc3e203f0083ae85ec387ec /configure.ac
parent9825697d3cf75e262dc81f01f7f6bf1e234306d3 (diff)
- (tim) [configure.ac] Allow --with-audit=no. OK dtucker@
Report by skeleten AT shillest.net
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 93297bbd8..a6fae9ff0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.282 2005/08/02 14:20:15 dtucker Exp $ 1# $Id: configure.ac,v 1.283 2005/08/09 17:09:54 tim Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -1051,6 +1051,8 @@ AC_ARG_WITH(audit,
1051 AC_MSG_RESULT(debug) 1051 AC_MSG_RESULT(debug)
1052 AC_DEFINE(SSH_AUDIT_EVENTS, [], Use audit debugging module) 1052 AC_DEFINE(SSH_AUDIT_EVENTS, [], Use audit debugging module)
1053 ;; 1053 ;;
1054 no)
1055 ;;
1054 *) 1056 *)
1055 AC_MSG_ERROR([Unknown audit module $withval]) 1057 AC_MSG_ERROR([Unknown audit module $withval])
1056 ;; 1058 ;;