Deleted Added
full compact
Makefile (117953) Makefile (117973)
1# $FreeBSD: head/libexec/telnetd/Makefile 117953 2003-07-24 07:19:55Z markm $
1# $FreeBSD: head/libexec/telnetd/Makefile 117973 2003-07-24 17:19:15Z markm $
2
3# Do not define -DKLUDGELINEMODE, as it does not interact well with many
4# telnet implementations.
5
6TELNETDIR= ${.CURDIR}/../../contrib/telnet
7.PATH: ${TELNETDIR}/telnetd
8
9PROG= telnetd

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

23LIBTELNET= ${.OBJDIR}/../../lib/libtelnet/libtelnet.a
24.else
25LIBTELNET= ${.CURDIR}/../../lib/libtelnet/libtelnet.a
26.endif
27
28DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
29LDADD= -lutil -ltermcap ${LIBTELNET}
30
2
3# Do not define -DKLUDGELINEMODE, as it does not interact well with many
4# telnet implementations.
5
6TELNETDIR= ${.CURDIR}/../../contrib/telnet
7.PATH: ${TELNETDIR}/telnetd
8
9PROG= telnetd

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

23LIBTELNET= ${.OBJDIR}/../../lib/libtelnet/libtelnet.a
24.else
25LIBTELNET= ${.CURDIR}/../../lib/libtelnet/libtelnet.a
26.endif
27
28DPADD= ${LIBUTIL} ${LIBTERMCAP} ${LIBTELNET}
29LDADD= -lutil -ltermcap ${LIBTELNET}
30
31.if !defined(RELEASE_CRUNCH)
31.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
32DISTRIBUTION= crypto
33SRCS+= authenc.c
34CFLAGS+= -DAUTHENTICATION -DENCRYPTION
35DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM}
36LDADD+= -lmp -lcrypto -lcrypt ${MINUSLPAM}
37.if !defined(NO_KERBEROS)
38CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
39DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR}
40LDADD+= -lkrb5 -lasn1 -lroken -lcom_err
41.endif
42.endif
32.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
33DISTRIBUTION= crypto
34SRCS+= authenc.c
35CFLAGS+= -DAUTHENTICATION -DENCRYPTION
36DPADD+= ${LIBMP} ${LIBCRYPTO} ${LIBCRYPT} ${LIBPAM}
37LDADD+= -lmp -lcrypto -lcrypt ${MINUSLPAM}
38.if !defined(NO_KERBEROS)
39CFLAGS+= -DKRB5 -DFORWARD -Dnet_write=telnet_net_write
40DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBROKEN} ${LIBCOM_ERR}
41LDADD+= -lkrb5 -lasn1 -lroken -lcom_err
42.endif
43.endif
44.endif
43
44.include <bsd.prog.mk>
45
46.include <bsd.prog.mk>