1# Common Make variables for OpenSSH 2 3.include <src.opts.mk> 4 5SSHDIR= ${SRCTOP}/crypto/openssh 6 7SFTP_CLIENT_SRCS=sftp-common.c sftp-client.c sftp-glob.c 8SKSRCS= ssh-sk-client.c 9 10CFLAGS+= -I${SSHDIR} -include ssh_namespace.h 11 12.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 13CFLAGS+= -include krb5_config.h 14.if ${MK_MITKRB5} == "no" 15CFLAGS+= -DHEIMDAL=1 16.endif 17 18.endif 19 20CFLAGS+= -DXAUTH_PATH=\"${LOCALBASE:U/usr/local}/bin/xauth\" 21 22.if ${MK_LDNS} != "no" 23CFLAGS+= -DHAVE_LDNS=1 24.endif 25 26.if ${MK_TCP_WRAPPERS} != "no" 27CFLAGS+= -DLIBWRAP=1 28.endif 29 30.if ${MK_USB} != "no" 31# Built-in security key support 32CFLAGS+= -include sk_config.h 33.endif 34 35CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L 36