- (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.
This commit is contained in:
parent
3c4659cb6f
commit
709528ab6a
|
@ -3,6 +3,9 @@
|
||||||
- djm@cvs.openbsd.org 2001/01/30 15:48:53
|
- djm@cvs.openbsd.org 2001/01/30 15:48:53
|
||||||
[sshconnect.c]
|
[sshconnect.c]
|
||||||
Make warning message a little more consistent. ok markus@
|
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
|
20000130
|
||||||
- (djm) OpenBSD CVS Sync:
|
- (djm) OpenBSD CVS Sync:
|
||||||
|
|
|
@ -1438,7 +1438,14 @@ AC_ARG_ENABLE(pututxline,
|
||||||
)
|
)
|
||||||
AC_ARG_WITH(lastlog,
|
AC_ARG_WITH(lastlog,
|
||||||
[ --with-lastlog=FILE|DIR specify lastlog location [common locations]],
|
[ --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 lastlog, [uw]tmpx? detection
|
||||||
dnl NOTE: set the paths in the platform section to avoid the
|
dnl NOTE: set the paths in the platform section to avoid the
|
||||||
|
|
Loading…
Reference in New Issue