summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-01-31 09:57:55 +1100
committerDamien Miller <djm@mindrot.org>2001-01-31 09:57:55 +1100
commit709528ab6a271ce39155fc494d40689f578f9d38 (patch)
tree5574e0b05aac9d0fa7e1ffd33f0342a5fc679c37
parent3c4659cb6ffb68ef0e81813eb737a3a3544e726c (diff)
- (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com> respectively.
-rw-r--r--ChangeLog3
-rw-r--r--configure.in9
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6667497e1..0e854e2f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - djm@cvs.openbsd.org 2001/01/30 15:48:53 3 - djm@cvs.openbsd.org 2001/01/30 15:48:53
4 [sshconnect.c] 4 [sshconnect.c]
5 Make warning message a little more consistent. ok markus@ 5 Make warning message a little more consistent. ok markus@
6 - (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
7 Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
8 respectively.
6 9
720000130 1020000130
8 - (djm) OpenBSD CVS Sync: 11 - (djm) OpenBSD CVS Sync:
diff --git a/configure.in b/configure.in
index 3a812d05d..d9f59a315 100644
--- a/configure.in
+++ b/configure.in
@@ -1438,7 +1438,14 @@ AC_ARG_ENABLE(pututxline,
1438) 1438)
1439AC_ARG_WITH(lastlog, 1439AC_ARG_WITH(lastlog,
1440 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]], 1440 [ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
1441 [ conf_lastlog_location="$withval"; ],) 1441 [
1442 if test "x$withval" = "xno" ; then
1443 AC_DEFINE(DISABLE_LASTLOG)
1444 else
1445 conf_lastlog_location=$withval
1446 fi
1447 ]
1448)
1442 1449
1443dnl lastlog, [uw]tmpx? detection 1450dnl lastlog, [uw]tmpx? detection
1444dnl NOTE: set the paths in the platform section to avoid the 1451dnl NOTE: set the paths in the platform section to avoid the