NetBSD/libexec/identd/Makefile
jwise 76cd940256 Add a -L (lie brazenly) flag, to demonstrate the perils of proof by
assertion^W^W^W^W^W^W^Wprovide admins with a means of providing a
standard host-wide identd response.  From the man page:

The -L<user name> option instructs identd to lie  brazenly
about  the  identity  of the user in question.  You didn't
really intend to trust my assertion about who I  was  any-
way, right?
This  flag  provides  a way for a site to support services
requiring the ident protocol while  providing  a  standard
answer to all ident queries. All queries to identd will
respond with a host type of  `OTHER'  and  a  username  of
<user name>.
1999-05-18 04:49:41 +00:00

16 lines
368 B
Makefile

# $NetBSD: Makefile,v 1.7 1999/05/18 04:49:41 jwise Exp $
PROG= identd
MAN= identd.8
CPPFLAGS+= -DINCLUDE_EXTENSIONS -DSTRONG_LOG -DALLOW_FORMAT
.ifdef DEFAULT_LIE_USER
CPPFLAGS+= -DDEFAULT_LIE_USER=\"${DEFAULT_LIE_USER}\"
.endif
LDADD+= -lutil -lkvm
DPADD+= ${LIBUTIL} ${LIBKVM}
SRCS= netbsd.c version.c proxy.c config.c parse.c identd.c
.include <bsd.prog.mk>