diff options
-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> |