Deleted Added
full compact
Makefile (156813) Makefile (158519)
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 156813 2006-03-17 18:54:44Z ru $
1# $FreeBSD: head/secure/usr.sbin/sshd/Makefile 158519 2006-05-13 13:47:45Z des $
2#
3
4.include <bsd.own.mk>
5
6PROG= sshd
7SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
8 sshpty.c sshlogin.c servconf.c serverloop.c \
9 auth.c auth1.c auth2.c auth-options.c session.c \

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

15 auth2-gss.c gss-serv.c gss-serv-krb5.c \
16 loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
17 audit.c audit-bsm.c \
18 gss-genr.c
19
20# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
21
22MAN= sshd.8 sshd_config.5
2#
3
4.include <bsd.own.mk>
5
6PROG= sshd
7SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
8 sshpty.c sshlogin.c servconf.c serverloop.c \
9 auth.c auth1.c auth2.c auth-options.c session.c \

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

15 auth2-gss.c gss-serv.c gss-serv-krb5.c \
16 loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
17 audit.c audit-bsm.c \
18 gss-genr.c
19
20# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
21
22MAN= sshd.8 sshd_config.5
23CFLAGS+=-I${SSHDIR}
23CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
24
25DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
26LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
27
28.if ${MK_AUDIT} != "no"
29CFLAGS+= -DUSE_BSM_AUDIT
30DPADD+= ${LIBBSM}
31LDADD+= -lbsm

--- 18 unchanged lines hidden ---
24
25DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
26LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
27
28.if ${MK_AUDIT} != "no"
29CFLAGS+= -DUSE_BSM_AUDIT
30DPADD+= ${LIBBSM}
31LDADD+= -lbsm

--- 18 unchanged lines hidden ---