Deleted Added
full compact
Makefile (160853) Makefile (160854)
1# $FreeBSD: head/libexec/telnetd/Makefile 160853 2006-07-31 13:20:44Z yar $
1# $FreeBSD: head/libexec/telnetd/Makefile 160854 2006-07-31 13:29:36Z yar $
2
3# Do not define -DKLUDGELINEMODE, as it does not interact well with many
4# telnet implementations.
5
6.include <bsd.own.mk>
7
8TELNETDIR= ${.CURDIR}/../../contrib/telnet
9.PATH: ${TELNETDIR}/telnetd

--- 20 unchanged lines hidden (view full) ---

30DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
31LDADD= -lutil -ltermcap ${LIBTELNET}
32
33.if ${MK_OPENSSL} != "no"
34SRCS+= authenc.c
35CFLAGS+= -DAUTHENTICATION -DENCRYPTION
36DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM}
37LDADD+= -lmp -lcrypto -lcrypt ${MINUSLPAM}
2
3# Do not define -DKLUDGELINEMODE, as it does not interact well with many
4# telnet implementations.
5
6.include <bsd.own.mk>
7
8TELNETDIR= ${.CURDIR}/../../contrib/telnet
9.PATH: ${TELNETDIR}/telnetd

--- 20 unchanged lines hidden (view full) ---

30DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
31LDADD= -lutil -ltermcap ${LIBTELNET}
32
33.if ${MK_OPENSSL} != "no"
34SRCS+= authenc.c
35CFLAGS+= -DAUTHENTICATION -DENCRYPTION
36DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM}
37LDADD+= -lmp -lcrypto -lcrypt ${MINUSLPAM}
38.endif
39
38.if ${MK_KERBEROS_SUPPORT} != "no"
39CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
40DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR}
41LDADD+= -lkrb5 -lasn1 -lroken -lcom_err
42.endif
40.if ${MK_KERBEROS_SUPPORT} != "no"
41CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
42DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR}
43LDADD+= -lkrb5 -lasn1 -lroken -lcom_err
44.endif
43.endif
44
45.include <bsd.prog.mk>
45
46.include <bsd.prog.mk>