summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authoretheisen <etheisen@cvs.openbsd.org>1996-02-15 04:18:03 +0000
committeretheisen <etheisen@cvs.openbsd.org>1996-02-15 04:18:03 +0000
commitc61a4da71a7867b4367df2ddd21293db3c4e7742 (patch)
treeffd1b35f46098a3e03d9ab3bd0d4235f06a98e89 /usr.sbin
parentfbd87aa3a31b73665665e3fdda526a91332c6d9e (diff)
libcrypt no longer a link dependancy.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pppd/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile
index dc83eae5b9e..5b789228ff0 100644
--- a/usr.sbin/pppd/Makefile
+++ b/usr.sbin/pppd/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1 1995/10/18 08:47:58 deraadt Exp $
+# $Id: Makefile,v 1.2 1996/02/15 04:18:02 etheisen Exp $
PROG= pppd
SRCS= main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \
@@ -8,8 +8,10 @@ SUBDIR= pppstats chat
BINMODE=4555
BINOWN= root
-LDADD= -lcrypt -lutil
-DPADD= ${LIBCRYPT} ${LIBUTIL}
+#LDADD= -lcrypt -lutil
+LDADD= -lutil
+#DPADD= ${LIBCRYPT} ${LIBUTIL}
+DPADD= ${LIBUTIL}
CFLAGS+= -DHAVE_PATHS_H
.include <bsd.prog.mk>