]> andersk Git - openssh.git/commitdiff
- (djm) Fix autoconf logic for --with-lastlog=no Report and diagnosis from
authordjm <djm>
Tue, 30 Jan 2001 22:57:55 +0000 (22:57 +0000)
committerdjm <djm>
Tue, 30 Jan 2001 22:57:55 +0000 (22:57 +0000)
   Philipp Buehler <lists@fips.de> and Kevin Steves <stevesk@sweden.hp.com>
   respectively.

ChangeLog
configure.in

index 6667497e1b1c31313d65df4f61a5f347e9c93f8c..0e854e2f17a99b7341a7c5c1d59e3883c1121dac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
    - djm@cvs.openbsd.org     2001/01/30 15:48:53
      [sshconnect.c]
      Make warning message a little more consistent. ok markus@
+ - (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.
 
 20000130
  - (djm) OpenBSD CVS Sync:
index 3a812d05d4813e8c15f84bd78b3a957da494574b..d9f59a3154f22ef24df1edac7bd9d37f2aec326b 100644 (file)
@@ -1438,7 +1438,14 @@ AC_ARG_ENABLE(pututxline,
 )
 AC_ARG_WITH(lastlog,
   [  --with-lastlog=FILE|DIR specify lastlog location [common locations]],
-  [ conf_lastlog_location="$withval";  ],)
+       [
+               if test "x$withval" = "xno" ; then      
+                       AC_DEFINE(DISABLE_LASTLOG)
+               else
+                       conf_lastlog_location=$withval
+               fi
+       ]
+)
 
 dnl lastlog, [uw]tmpx? detection
 dnl  NOTE: set the paths in the platform section to avoid the
This page took 0.35273 seconds and 5 git commands to generate.