opnsense-src/lib/libtelnet/Makefile
Lexi Winter 1a80bcc5fa Remove redundant PACKAGE for INTERNALLIB libraries
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
2025-08-23 01:57:23 +01:00

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>