diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-02-15 04:18:03 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-02-15 04:18:03 +0000 |
commit | c61a4da71a7867b4367df2ddd21293db3c4e7742 (patch) | |
tree | ffd1b35f46098a3e03d9ab3bd0d4235f06a98e89 /usr.sbin | |
parent | fbd87aa3a31b73665665e3fdda526a91332c6d9e (diff) |
libcrypt no longer a link dependancy.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pppd/Makefile | 8 |
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> |