mirror of
https://github.com/opnsense/src.git
synced 2026-05-27 11:53:25 -04:00
both telnet and telnetd aren't that useful nowadays but some
might want them.
Create a FreeBSD-telnet package so users have a choice to have
them or not.
Differential Revision: https://reviews.freebsd.org/D31791
Reviewed by: emaste
(cherry picked from commit c7fd29f0f2)
40 lines
723 B
Makefile
40 lines
723 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= telnet
|
|
|
|
TELNETDIR= ${SRCTOP}/contrib/telnet
|
|
.PATH: ${TELNETDIR}/telnet
|
|
|
|
PROG= telnet
|
|
|
|
SRCS= commands.c main.c network.c ring.c sys_bsd.c \
|
|
telnet.c terminal.c utilities.c
|
|
|
|
CFLAGS+= -DKLUDGELINEMODE -DUSE_TERMIO -DENV_HACK -DOPIE \
|
|
-I${TELNETDIR} -I${TELNETDIR}/libtelnet/
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
|
|
WARNS?= 2
|
|
|
|
LIBADD= telnet ncursesw
|
|
|
|
CFLAGS+= -DIPSEC
|
|
LIBADD+= ipsec
|
|
|
|
.if ${MK_OPENSSL} != "no"
|
|
SRCS+= authenc.c
|
|
CFLAGS+= -DENCRYPTION -DAUTHENTICATION -DIPSEC
|
|
LIBADD+= mp crypto ipsec pam
|
|
.endif
|
|
|
|
.if ${MK_KERBEROS_SUPPORT} != "no"
|
|
CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
|
|
LIBADD+= krb5 roken
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|