diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 11 insertions, 1 deletions
@@ -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 | ||
7 | 20000130 | 10 | 20000130 |
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 | ) |
1439 | AC_ARG_WITH(lastlog, | 1439 | AC_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 | ||
1443 | dnl lastlog, [uw]tmpx? detection | 1450 | dnl lastlog, [uw]tmpx? detection |
1444 | dnl NOTE: set the paths in the platform section to avoid the | 1451 | dnl NOTE: set the paths in the platform section to avoid the |