mirror of
https://github.com/opnsense/src.git
synced 2026-06-19 13:39:12 -04:00
These libraries don't install anything, so they shouldn't have a PACKAGE setting. This avoids surprising behaviour in future if e.g. manpages are added to an internal library. Reported by: des Differential Revision: https://reviews.freebsd.org/D51901
27 lines
591 B
Makefile
27 lines
591 B
Makefile
.include <src.opts.mk>
|
|
|
|
TELNETDIR= ${SRCTOP}/contrib/telnet
|
|
.PATH: ${TELNETDIR}/libtelnet
|
|
|
|
LIB= telnet
|
|
|
|
INTERNALLIB=
|
|
|
|
SRCS= genget.c getent.c misc.c
|
|
CFLAGS+= -I${TELNETDIR}
|
|
|
|
WARNS?= 2
|
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
SRCS+= encrypt.c auth.c enc_des.c sra.c pk.c
|
|
CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DSRA
|
|
CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L
|
|
.endif
|
|
|
|
.if ${MK_KERBEROS_SUPPORT} != "no" && ${MK_MITKRB5} != "yes"
|
|
# MIT KRB5 deprecated and removed 3DES. Therefore no telnet support.
|
|
SRCS+= kerberos5.c
|
|
CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|