Deleted Added
full compact
Makefile (291198) Makefile (291941)
1# $FreeBSD: head/secure/lib/libssh/Makefile 291198 2015-11-23 12:48:13Z des $
1# $FreeBSD: head/secure/lib/libssh/Makefile 291941 2015-12-07 16:08:09Z bdrewery $
2
3.include <src.opts.mk>
4
5LIB= ssh
6PRIVATELIB= true
7SHLIB_MAJOR= 5
8SRCS= authfd.c authfile.c bufaux.c bufbn.c buffer.c \
9 canohost.c channels.c cipher.c cipher-aes.c \

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

33.else
34LDNSDIR= ${.CURDIR}/../../../contrib/ldns
35CFLAGS+= -DHAVE_LDNS=1 -I${LDNSDIR}
36SRCS+= getrrsetbyname-ldns.c
37LIBADD+= ldns
38.endif
39
40CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
2
3.include <src.opts.mk>
4
5LIB= ssh
6PRIVATELIB= true
7SHLIB_MAJOR= 5
8SRCS= authfd.c authfile.c bufaux.c bufbn.c buffer.c \
9 canohost.c channels.c cipher.c cipher-aes.c \

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

33.else
34LDNSDIR= ${.CURDIR}/../../../contrib/ldns
35CFLAGS+= -DHAVE_LDNS=1 -I${LDNSDIR}
36SRCS+= getrrsetbyname-ldns.c
37LIBADD+= ldns
38.endif
39
40CFLAGS+= -I${SSHDIR} -include ssh_namespace.h
41SRCS+= ssh_namespace.h
41
42.if ${MK_KERBEROS_SUPPORT} != "no"
43CFLAGS+= -include krb5_config.h
42
43.if ${MK_KERBEROS_SUPPORT} != "no"
44CFLAGS+= -include krb5_config.h
45SRCS+= krb5_config.h
44.endif
45
46NO_LINT=
47
48LIBADD+= crypto crypt z
49
50.include <bsd.lib.mk>
51
52.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
46.endif
47
48NO_LINT=
49
50LIBADD+= crypto crypt z
51
52.include <bsd.lib.mk>
53
54.PATH: ${SSHDIR} ${SSHDIR}/openbsd-compat
53
54${OBJS} ${POBJS} ${SOBJS}: ssh_namespace.h
55.if ${MK_KERBEROS_SUPPORT} != "no"
56${OBJS} ${POBJS} ${SOBJS}: krb5_config.h
57.endif