aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.sbin
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2004-01-07 11:17:23 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2004-01-07 11:17:23 +0000
commita04e3d6c3084de022d6bb2144c7a89fd5d8b9f75 (patch)
tree761510fed0d5564bb8ef9322e51b0804bd9c96f6 /secure/usr.sbin
parentcf2b5f3b6d88690d9dee1824ed589d164bb62abc (diff)
downloadsrc-a04e3d6c3084de022d6bb2144c7a89fd5d8b9f75.tar.gz
src-a04e3d6c3084de022d6bb2144c7a89fd5d8b9f75.zip
Update Makefiles for OpenSSH 3.7.1p2.
Notes
Notes: svn path=/head/; revision=124212
Diffstat (limited to 'secure/usr.sbin')
-rw-r--r--secure/usr.sbin/sshd/Makefile21
1 files changed, 10 insertions, 11 deletions
diff --git a/secure/usr.sbin/sshd/Makefile b/secure/usr.sbin/sshd/Makefile
index 0f2bc2ac7d29..f00e415490fa 100644
--- a/secure/usr.sbin/sshd/Makefile
+++ b/secure/usr.sbin/sshd/Makefile
@@ -6,37 +6,36 @@ SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
sshpty.c sshlogin.c servconf.c serverloop.c uidswap.c \
auth.c auth1.c auth2.c auth-options.c session.c \
auth-chall.c auth2-chall.c groupaccess.c \
- auth-skey.c auth-bsdauth.c monitor_mm.c monitor.c \
+ auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
auth2-none.c auth2-passwd.c auth2-pubkey.c \
- auth2-hostbased.c auth2-kbdint.c \
- auth2-pam-freebsd.c monitor_wrap.c monitor_fdpass.c \
- kexdhs.c kexgexs.c
-# Portability layer
-SRCS+= loginrec.c
+ monitor_mm.c monitor.c monitor_wrap.c monitor_fdpass.c \
+ kexdhs.c kexgexs.c \
+ auth-krb5.c \
+ auth2-gss.c gss-serv.c gss-serv-krb5.c \
+ loginrec.c auth-pam.c auth-sia.c md5crypt.c
MAN= sshd.8 sshd_config.5
CFLAGS+=-I${SSHDIR}
.if !defined(NO_KERBEROS)
CFLAGS+= -DKRB5 -DHEIMDAL
-SRCS+= auth-krb5.c
-LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -lroken
DPADD+= ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBMD} ${LIBROKEN}
+LDADD+= -lkrb5 -lasn1 -lcom_err -lmd -lroken
.endif
-LDADD+= -lopie -lmd
DPADD+= ${LIBOPIE} ${LIBMD}
+LDADD+= -lopie -lmd
.if defined(X11BASE)
CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
.endif
-LDADD+= -lssh -lcrypt -lcrypto -lutil -lz -lwrap ${MINUSLPAM}
DPADD+= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
+LDADD+= -lssh -lcrypt -lcrypto -lutil -lz -lwrap ${MINUSLPAM}
.if defined(OPENSSH_USE_POSIX_THREADS) && !defined(NOLIBC_R)
CFLAGS+=-DUSE_POSIX_THREADS
-LDADD+= -lc_r
DPADD+= ${LIBC_R}
+LDADD+= -lc_r
.endif
.include <bsd.prog.mk>