diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-10-11 03:35:32 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2000-10-11 03:35:32 +0000 |
commit | 79c8873163645d750cc219c328bb08ad44f0e2d3 (patch) | |
tree | f9eb4ffaa5b20c895615bb933c4e5b4652c8b69c | |
parent | 0a13e042b190b6890ac821e7f27af22fa5802b02 (diff) | |
download | src-79c8873163645d750cc219c328bb08ad44f0e2d3.tar.gz src-79c8873163645d750cc219c328bb08ad44f0e2d3.zip |
NOCRYPT imples NO_OPENSSL.
Still need to solve the distribution problem.
Submitted by: kris
Notes
Notes:
svn path=/head/; revision=66959
-rw-r--r-- | secure/usr.sbin/sendmail/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/sendmail/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.sbin/sendmail/Makefile b/secure/usr.sbin/sendmail/Makefile index 539e512b9a00..b2dfcdc759ff 100644 --- a/secure/usr.sbin/sendmail/Makefile +++ b/secure/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 diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile index 539e512b9a00..b2dfcdc759ff 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 |