aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pppd
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1999-04-29 17:56:28 +0000
committerJohn Polstra <jdp@FreeBSD.org>1999-04-29 17:56:28 +0000
commitd74efe91053268bcf47fe1a228cdc495327d3c82 (patch)
tree2c80d6a4c974c4f2936967bf279c6eaad62402ac /usr.sbin/pppd
parent737267b89113c9ca76cad7d9629b36a1e7565e22 (diff)
Notes
Diffstat (limited to 'usr.sbin/pppd')
-rw-r--r--usr.sbin/pppd/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile
index 323cc0dc45ad..f6e5858dd51d 100644
--- a/usr.sbin/pppd/Makefile
+++ b/usr.sbin/pppd/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.11 1998/09/19 22:42:11 obrien Exp $
+# $Id: Makefile,v 1.12 1998/10/11 19:40:38 jdp Exp $
CFLAGS+= -DHAVE_PATHS_H
@@ -28,9 +28,12 @@ LDADD+= -lpcap
DPADD+= ${LIBPCAP}
# MS-CHAP support. Requires the DES library.
-#CFLAGS+=-DCHAPMS
-#SRCS+= chap_ms.c
-#LDADD+= -ldes
-#DPADD+= ${LIBDES}
+.if exists(${.CURDIR}/../../secure) && !defined(NOCRYPT) && !defined(NOSECURE)
+DISTRIBUTION=des
+CFLAGS+=-DCHAPMS
+SRCS+= chap_ms.c
+LDADD+= -ldes
+DPADD+= ${LIBDES}
+.endif
.include <bsd.prog.mk>