diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2000-10-11 03:35:32 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2000-10-11 03:35:32 +0000 |
commit | e5336b1b209556145d5c63206a9caeb271941332 (patch) | |
tree | 923671d6d431084368eb55b40fb70d4846cc1222 /usr.sbin/sendmail | |
parent | 3dcfe3e525dc314174f89648c6affba5e13c5446 (diff) | |
download | FreeBSD-src-e5336b1b209556145d5c63206a9caeb271941332.zip FreeBSD-src-e5336b1b209556145d5c63206a9caeb271941332.tar.gz |
NOCRYPT imples NO_OPENSSL.
Still need to solve the distribution problem.
Submitted by: kris
Diffstat (limited to 'usr.sbin/sendmail')
-rw-r--r-- | usr.sbin/sendmail/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile index 539e512..b2dfcdc 100644 --- a/usr.sbin/sendmail/Makefile +++ b/usr.sbin/sendmail/Makefile @@ -44,7 +44,7 @@ LIBSMUTIL:= ${LIBSMUTILDIR}/libsmutil.a DPADD+= ${LIBSMUTIL} LDADD+= ${LIBSMUTIL} -.if !defined(NO_OPENSSL) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) # STARTTLS support CFLAGS+=-DSTARTTLS -D_FFR_TLS_O_T -D_FFR_TLS_1 -D_FFR_TLS_TOREK LDADD+= -lssl -lcrypto |