freebsd-dev/usr.sbin/rwhod/Makefile
Ed Schouten 41477e05db Let rwhod use libulog.
I am not planning on providing a mechanism tot stat() the database files
directly. The disadvantage of this, is that rwhod will now be a little
bit more heavy than it used to be. It normally used to fstat() the file
descriptor to see whether the file had changed, but this is now
impossible to implement, meaning we have to parse the entire utmp file
each 180 seconds.

This is probably not an issue on modern 16-way servers, but if it turns
out to be a problem, we'll think of something.
2009-12-27 21:14:55 +00:00

14 lines
195 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= rwhod
MAN= rwhod.8
# XXX breaks on Alpha due to alignment constraints
#WARNS?= 4
DPADD= ${LIBULOG}
LDADD= -lulog
.include <bsd.prog.mk>