diff options
author | peter <peter@FreeBSD.org> | 1996-01-01 08:42:23 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-01-01 08:42:23 +0000 |
commit | eb8e89ecaf8d5bf63b246f1a592f7eed946aff7a (patch) | |
tree | 2acd911d5c23af222fa71003a7c8eeaadcff9a34 /usr.sbin/inetd/Makefile | |
parent | ae296d31817ed7ad9749e5dcab3f2690d03dcb9c (diff) | |
download | FreeBSD-src-eb8e89ecaf8d5bf63b246f1a592f7eed946aff7a.zip FreeBSD-src-eb8e89ecaf8d5bf63b246f1a592f7eed946aff7a.tar.gz |
Make inetd use setproctitle from libutil instead of it's own version.
The old code can probably still be compiled with #define OLD_SETPROCTITLE
Diffstat (limited to 'usr.sbin/inetd/Makefile')
-rw-r--r-- | usr.sbin/inetd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/inetd/Makefile b/usr.sbin/inetd/Makefile index 0eecd6b..7cb6c05 100644 --- a/usr.sbin/inetd/Makefile +++ b/usr.sbin/inetd/Makefile @@ -4,4 +4,7 @@ PROG= inetd MAN8= inetd.8 MLINKS= inetd.8 inetd.conf.5 +DPADD+= ${LIBUTIL} +LDADD+= -lutil + .include <bsd.prog.mk> |