From 8bc6b900ed8609d67e75bc7266b9b533a703eb4a Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Tue, 9 Aug 2005 10:09:53 -0700 Subject: [PATCH] - (tim) [configure.ac] Allow --with-audit=no. OK dtucker@ Report by skeleten AT shillest.net --- ChangeLog | 6 +++++- configure.ac | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c0c2dbc05..6a27ad629 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20050809 + - (tim) [configure.ac] Allow --with-audit=no. OK dtucker@ + Report by skeleten AT shillest.net + 20050803 - (dtucker) [openbsd-compat/fake-rfc2553.h] Check for EAI_* defines individually and use a value less likely to collide with real values from @@ -2896,4 +2900,4 @@ - (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu -$Id: ChangeLog,v 1.3862 2005/08/03 05:36:21 dtucker Exp $ +$Id: ChangeLog,v 1.3863 2005/08/09 17:09:53 tim Exp $ diff --git a/configure.ac b/configure.ac index 93297bbd8..a6fae9ff0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.282 2005/08/02 14:20:15 dtucker Exp $ +# $Id: configure.ac,v 1.283 2005/08/09 17:09:54 tim Exp $ # # Copyright (c) 1999-2004 Damien Miller # @@ -1051,6 +1051,8 @@ AC_ARG_WITH(audit, AC_MSG_RESULT(debug) AC_DEFINE(SSH_AUDIT_EVENTS, [], Use audit debugging module) ;; + no) + ;; *) AC_MSG_ERROR([Unknown audit module $withval]) ;;