summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a96605e9d..389954232 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120050307
2 - (dtucker) [configure.ac] Disable gettext search when configuring with
3 BSM audit support for the time being. ok djm@
4
120050306 520050306
2 - (dtucker) [monitor.c] Bug #125 comment #47: fix errors returned by monitor 6 - (dtucker) [monitor.c] Bug #125 comment #47: fix errors returned by monitor
3 when attempting to audit disconnect events. Reported by Phil Dibowitz. 7 when attempting to audit disconnect events. Reported by Phil Dibowitz.
@@ -2283,4 +2287,4 @@
2283 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2287 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2284 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2288 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2285 2289
2286$Id: ChangeLog,v 1.3693 2005/03/06 11:38:51 dtucker Exp $ 2290$Id: ChangeLog,v 1.3694 2005/03/07 06:34:45 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 94d127299..b145e127a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.248 2005/02/25 23:07:38 dtucker Exp $ 1# $Id: configure.ac,v 1.249 2005/03/07 06:34:46 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -897,7 +897,7 @@ AC_ARG_WITH(audit,
897 AC_CHECK_FUNCS(getaudit, [], 897 AC_CHECK_FUNCS(getaudit, [],
898 [AC_MSG_ERROR(BSM enabled and required function not found)]) 898 [AC_MSG_ERROR(BSM enabled and required function not found)])
899 # These are optional 899 # These are optional
900 AC_CHECK_FUNCS(getaudit_addr gettext) 900 AC_CHECK_FUNCS(getaudit_addr)
901 AC_DEFINE(USE_BSM_AUDIT, [], [Use BSM audit module]) 901 AC_DEFINE(USE_BSM_AUDIT, [], [Use BSM audit module])
902 ;; 902 ;;
903 debug) 903 debug)