diff options
| author | Mark Murray <markm@FreeBSD.org> | 2003-07-20 23:29:46 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2003-07-20 23:29:46 +0000 |
| commit | acce0bcdb3ef4714bbf9cd573c2e4b23836e6bff (patch) | |
| tree | 83b79f83cb17088968a0da959381c235dcd956b2 | |
| parent | 45bbf62fb584b30247ebba0724a159694e9a2fb0 (diff) | |
Notes
| -rw-r--r-- | lib/libtelnet/Makefile | 2 | ||||
| -rw-r--r-- | libexec/telnetd/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/telnet/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libtelnet/Makefile b/lib/libtelnet/Makefile index 4ee31fb46985..200b66887f5d 100644 --- a/lib/libtelnet/Makefile +++ b/lib/libtelnet/Makefile @@ -13,7 +13,7 @@ CFLAGS+= -I${TELNETDIR} WARNS?= 2 -.if !defined(NO_CRYPTO) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) SRCS+= encrypt.c auth.c enc_des.c sra.c pk.c CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DSRA .if !defined(NO_KERBEROS) diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile index 96d11fe6f58a..47dc8085e8d5 100644 --- a/libexec/telnetd/Makefile +++ b/libexec/telnetd/Makefile @@ -28,7 +28,7 @@ LIBTELNET= ${.CURDIR}/../../lib/libtelnet/libtelnet.a DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET} LDADD= -lutil -ltermcap ${LIBTELNET} -.if !defined(NO_CRYPTO) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) SRCS+= authenc.c CFLAGS+= -DAUTHENTICATION -DENCRYPTION DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM} diff --git a/usr.bin/telnet/Makefile b/usr.bin/telnet/Makefile index 817a725cf615..f3ae3ca6b2d9 100644 --- a/usr.bin/telnet/Makefile +++ b/usr.bin/telnet/Makefile @@ -30,7 +30,7 @@ SRCS+= genget.c getent.c misc.c CFLAGS+= -DHAS_CGETENT .endif -.if !defined(NO_CRYPTO) +.if !defined(NOCRYPT) && !defined(NO_OPENSSL) SRCS+= authenc.c CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DIPSEC DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBIPSEC} ${LIBPAM} |
