diff options
author | markm <markm@FreeBSD.org> | 2003-07-24 18:30:25 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2003-07-24 18:30:25 +0000 |
commit | 376c7c030b5cd0977a799d9e2405ad5e6562f478 (patch) | |
tree | 02f034a43f77b334e2a958993abac4da32ec093c /usr.sbin/pppd/Makefile | |
parent | d82798033a21b0cd6572c99a4aaf6f62c860ce87 (diff) | |
download | FreeBSD-src-376c7c030b5cd0977a799d9e2405ad5e6562f478.zip FreeBSD-src-376c7c030b5cd0977a799d9e2405ad5e6562f478.tar.gz |
Don't check for the existance of src/crypto/ for building items that
may contain crypto. The days of ITAR paranoia are over, and the simple
macro tests that remain are sufficient.
Diffstat (limited to 'usr.sbin/pppd/Makefile')
-rw-r--r-- | usr.sbin/pppd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile index 7c5f3029..c0719a9 100644 --- a/usr.sbin/pppd/Makefile +++ b/usr.sbin/pppd/Makefile @@ -30,7 +30,7 @@ DPADD+= ${LIBPCAP} LDADD+= -lpcap # MS-CHAP support. Requires the DES library. -.if exists(${.CURDIR}/../../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(RELEASE_CRUNCH) DISTRIBUTION=crypto CFLAGS+= -DCHAPMS SRCS+= chap_ms.c |