mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
The framework now ensure by itself that pthread is added to the link chain as the last component if linked to kerberos hence avoid with out any explicit addition prevent issue like CVE-2014-8475
26 lines
407 B
Makefile
26 lines
407 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= ssh-keysign
|
|
SRCS= ssh-keysign.c roaming_dummy.c readconf.c
|
|
MAN= ssh-keysign.8
|
|
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
|
|
BINMODE=4555
|
|
|
|
LIBADD= ssh
|
|
|
|
.if ${MK_LDNS} != "no"
|
|
CFLAGS+= -DHAVE_LDNS=1
|
|
#DPADD+= ${LIBLDNS}
|
|
#LDADD+= -lldns
|
|
#USEPRIVATELIB+= ldns
|
|
.endif
|
|
|
|
LIBADD+= crypto
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${SSHDIR}
|
|
|
|
${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
|