ac188d74d6
that they add X11BASE=${LOCALBASE} to /etc/make.conf since X11BASE was hard-wired to the now-wrong location in old releases. However, both X11BASE and LOCALBASE have moved out of scope of src/ into ports/ now, which causes problems for upgraded users who have old make.conf files still containing the above setting. X11BASE becomes null and we instruct ssh and sshd to look for xauth in /bin/xauth where it is unlikely to be found. Instead, provide a copy of the default LOCALBASE?=/usr/local setting here. We also have to deal with the case where the user only overrides LOCALBASE and doesn't set an explicit X11BASE (in ports it will be set implicitly but not here), which will also move the location of xauth. MFC after: 3 days Reported by: rwatson
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= sshd
|
|
SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
|
|
sshpty.c sshlogin.c servconf.c serverloop.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 auth2-hostbased.c auth2-kbdint.c \
|
|
auth2-none.c auth2-passwd.c auth2-pubkey.c \
|
|
monitor_mm.c monitor.c monitor_wrap.c kexdhs.c kexgexs.c \
|
|
auth-krb5.c \
|
|
auth2-gss.c gss-serv.c gss-serv-krb5.c \
|
|
loginrec.c auth-pam.c auth-shadow.c auth-sia.c md5crypt.c \
|
|
audit.c audit-bsm.c platform.c \
|
|
gss-genr.c
|
|
|
|
# gss-genr.c really belongs in libssh; see src/secure/lib/libssh/Makefile
|
|
|
|
MAN= sshd.8 sshd_config.5
|
|
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
|
|
|
|
DPADD= ${LIBSSH} ${LIBUTIL} ${LIBZ} ${LIBWRAP} ${LIBPAM}
|
|
LDADD= -lssh -lutil -lz -lwrap ${MINUSLPAM}
|
|
|
|
.if ${MK_AUDIT} != "no"
|
|
CFLAGS+= -DUSE_BSM_AUDIT
|
|
DPADD+= ${LIBBSM}
|
|
LDADD+= -lbsm
|
|
.endif
|
|
|
|
.if ${MK_KERBEROS_SUPPORT} != "no"
|
|
CFLAGS+= -DGSSAPI -DHAVE_GSSAPI_GSSAPI_H=1 -DKRB5 -DHEIMDAL
|
|
DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
|
|
LDADD+= -lgssapi -lkrb5 -lasn1 -lcom_err -lroken
|
|
.endif
|
|
|
|
.if defined(X11BASE)
|
|
# Recommended /etc/make.conf setting is X11BASE=${LOCALBASE} for x.org
|
|
# 7.x upgrade on <= 6.2, but LOCALBASE has moved out of scope of src/
|
|
# so we need to provide the default for users with old make.conf
|
|
# settings.
|
|
LOCALBASE?= /usr/local
|
|
|
|
# Users may override either LOCALBASE or X11BASE to move the location
|
|
# of xauth
|
|
X11BASE?= ${LOCALBASE}
|
|
CFLAGS+= -DXAUTH_PATH=\"${X11BASE}/bin/xauth\"
|
|
.endif
|
|
|
|
DPADD+= ${LIBCRYPTO} ${LIBCRYPT}
|
|
LDADD+= -lcrypto -lcrypt
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|
|
|
|
${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
|