From 9560f2b1988b3b343ece8c59c1f0e3eb8da8c0f9 Mon Sep 17 00:00:00 2001 From: green Date: Thu, 15 Jul 1999 01:34:02 +0000 Subject: This is the working internal ident service. Turn it on by setting the make variable REAL_IDENT, and ~/.fakeid support can be added with FAKEID set. Note that the default behavior is the same as the old behavior. --- usr.sbin/inetd/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'usr.sbin/inetd/Makefile') diff --git a/usr.sbin/inetd/Makefile b/usr.sbin/inetd/Makefile index 7af0b63..d8434e7 100644 --- a/usr.sbin/inetd/Makefile +++ b/usr.sbin/inetd/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $Id: Makefile,v 1.9 1999/06/17 09:16:06 sheldonh Exp $ +# $Id: Makefile,v 1.10 1999/06/27 18:05:33 sheldonh Exp $ PROG= inetd MAN8= inetd.8 @@ -7,6 +7,12 @@ MLINKS= inetd.8 inetd.conf.5 COPTS+= -Wall -DLOGIN_CAP #COPTS+= -DSANITY_CHECK +.ifdef REAL_IDENT +COPTS+= -DREAL_IDENT +.ifdef FAKEID +COPTS+= -DFAKEID +.endif +.endif DPADD+= ${LIBUTIL} ${LIBWRAP} LDADD+= -lutil -lwrap -- cgit v1.1