Deleted Added
full compact
Makefile (153838) Makefile (155563)
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 153838 2005-12-29 14:40:22Z dfr $
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 155563 2006-02-12 07:19:45Z csjp $
2#
3
4PROG= sshd
5SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
6 sshpty.c sshlogin.c servconf.c serverloop.c \
7 auth.c auth1.c auth2.c auth-options.c session.c \
8 auth-chall.c auth2-chall.c groupaccess.c \
9 auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \

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

18# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
19
20MAN= sshd.8 sshd_config.5
21CFLAGS+=-I${SSHDIR}
22
23DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
24LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
25
2#
3
4PROG= sshd
5SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
6 sshpty.c sshlogin.c servconf.c serverloop.c \
7 auth.c auth1.c auth2.c auth-options.c session.c \
8 auth-chall.c auth2-chall.c groupaccess.c \
9 auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \

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

18# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
19
20MAN= sshd.8 sshd_config.5
21CFLAGS+=-I${SSHDIR}
22
23DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
24LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
25
26.if !defined(NO_AUDIT)
27CFLAGS+= -DUSE_BSM_AUDIT
28DPADD+= ${LIBBSM}
29LDADD+= -lbsm
30.endif
31
26.if !defined(NO_KERBEROS)
27CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
28DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
29LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lroken
30.endif
31
32.if defined(X11BASE)
33CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
34.endif
35
36DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
37LDADD+= -lcrypto -lcrypt
38
39.include <bsd.prog.mk>
40
41.PATH: ${SSHDIR}
32.if !defined(NO_KERBEROS)
33CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
34DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
35LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lroken
36.endif
37
38.if defined(X11BASE)
39CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
40.endif
41
42DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
43LDADD+= -lcrypto -lcrypt
44
45.include <bsd.prog.mk>
46
47.PATH: ${SSHDIR}