aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pppctl
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2000-09-02 02:01:18 +0000
committerBrian Somers <brian@FreeBSD.org>2000-09-02 02:01:18 +0000
commitea32742676c1522a78dd186b2a44d85616f296bc (patch)
treec3e3ca6bfd322e4680457c95c91c5f53e98ad7a5 /usr.sbin/pppctl
parent9feac5c21886516546e35fd8a6e12c9bd775aca6 (diff)
downloadsrc-ea32742676c1522a78dd186b2a44d85616f296bc.tar.gz
src-ea32742676c1522a78dd186b2a44d85616f296bc.zip
libutil is no longer required as setproctitle() has moved to libc
Notes
Notes: svn path=/head/; revision=65354
Diffstat (limited to 'usr.sbin/pppctl')
-rw-r--r--usr.sbin/pppctl/Makefile4
-rw-r--r--usr.sbin/pppctl/pppctl.c3
2 files changed, 2 insertions, 5 deletions
diff --git a/usr.sbin/pppctl/Makefile b/usr.sbin/pppctl/Makefile
index c20adadf8183..718d2f764737 100644
--- a/usr.sbin/pppctl/Makefile
+++ b/usr.sbin/pppctl/Makefile
@@ -3,8 +3,8 @@
PROG= pppctl
SRCS= pppctl.c
CFLAGS+=-Wall
-LDADD+= -ledit -ltermcap -lutil
-DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL}
+LDADD+= -ledit -ltermcap
+DPADD+= ${LIBEDIT} ${LIBTERMCAP}
MAN8= pppctl.8
.include <bsd.prog.mk>
diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c
index ef6b4143fbb6..f6cced64cf8f 100644
--- a/usr.sbin/pppctl/pppctl.c
+++ b/usr.sbin/pppctl/pppctl.c
@@ -38,9 +38,6 @@
#include <err.h>
#include <errno.h>
#include <histedit.h>
-#ifdef __FreeBSD__
-#include <libutil.h>
-#endif
#include <setjmp.h>
#include <signal.h>
#include <stdio.h>