5c099b14c1
pull in just about all of the differences from the crypto-us telnet suite (which includes Kerberos 4 and connection encryption support). Also bring in the Kerberos 5 support from the Heimdal telnet, and frob a little so that it can work with the non-Heimdal telnet suite. There is still some work left to do, specifically: - Add Heimdal's ticket forwarding support to the Berkeley Kerberos 4 module. - Add connection encryption support to the Heimdal Kerberos 5 module. Hints on this can be taken from the MIT Kerberos 5 module which still exists in crypto-us. However, even with the shortcomings listed above, this is a better situation than using the stock Heimdal telnet suite, which does not understand the IPSec policy stuff, and is also based on much older code which contains bugs that we have already fixed in the NetBSD sources.
26 lines
760 B
Makefile
26 lines
760 B
Makefile
# $NetBSD: Makefile,v 1.24 2000/06/22 06:47:49 thorpej Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
|
|
|
|
MAN= telnetd.8
|
|
|
|
CPPFLAGS+=-DINET6
|
|
|
|
PROG= telnetd
|
|
CPPFLAGS+=-DLINEMODE -DKLUDGELINEMODE -DUSE_TERMIO -DDIAGNOSTICS -DOPENPTY_PTY
|
|
CPPFLAGS+=-DOLD_ENVIRON -DENV_HACK -DSECURELOGIN
|
|
SRCS= authenc.c global.c slc.c state.c sys_term.c telnetd.c \
|
|
termstat.c utility.c
|
|
DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
|
|
LDADD+= -lutil -ltermcap -ltelnet
|
|
|
|
CPPFLAGS+=-DAUTHENTICATION -DENCRYPTION
|
|
CPPFLAGS+=-I${DESTDIR}/usr/include/krb5
|
|
CPPFLAGS+=-I${.CURDIR}/../../lib
|
|
CPPFLAGS+=-DKRB5
|
|
CPPFLAGS+=-I${.CURDIR}
|
|
|
|
LDADD+= -lkrb5 -lkrb -lcrypto -lasn1 -lcom_err -lroken
|
|
DPADD+= ${LIBKRB5} ${LIBKRB} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
|
|
|
|
.include <bsd.prog.mk>
|