diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2013-07-02 13:32:39 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2013-07-02 13:32:39 +0000 |
commit | a1f3ebf7c1257ca015be19e2f7593c6b174249ca (patch) | |
tree | 5d9b36af2797d19827a685d685e71b1d0374ce4e /usr.bin/ssh | |
parent | c40b02ccd1394c68f0ef6dde31f584fcc55c2601 (diff) |
add missing library dependencies
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/sftp-server/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/ssh/sftp/Makefile | 3 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 4 |
5 files changed, 10 insertions, 8 deletions
diff --git a/usr.bin/ssh/sftp-server/Makefile b/usr.bin/ssh/sftp-server/Makefile index 84c3777f31e..bb9fb0d7a89 100644 --- a/usr.bin/ssh/sftp-server/Makefile +++ b/usr.bin/ssh/sftp-server/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2010/01/13 01:40:16 djm Exp $ +# $OpenBSD: Makefile,v 1.9 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -13,5 +13,6 @@ MAN= sftp-server.8 SRCS= sftp-server.c sftp-common.c sftp-server-main.c LDADD+= -lutil +DPADD+= ${LIBUTIL} .include <bsd.prog.mk> diff --git a/usr.bin/ssh/sftp/Makefile b/usr.bin/ssh/sftp/Makefile index 08da805467d..0b2828ad62f 100644 --- a/usr.bin/ssh/sftp/Makefile +++ b/usr.bin/ssh/sftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2008/04/18 12:32:11 djm Exp $ +# $OpenBSD: Makefile,v 1.12 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -15,3 +15,4 @@ SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c .include <bsd.prog.mk> LDADD+= -ledit -ltermcap -lutil +DPADD+= ${LIBEDIT} ${LIBTERMCAP} ${LIBUTIL} diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile index 0627c0bf906..31a8bb1a987 100644 --- a/usr.bin/ssh/ssh-keysign/Makefile +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2013/05/16 09:12:31 dtucker Exp $ +# $OpenBSD: Makefile,v 1.8 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -15,4 +15,4 @@ SRCS= ssh-keysign.c readconf.c roaming_dummy.c .include <bsd.prog.mk> LDADD+= -lcrypto -lutil -lz -DPADD+= ${LIBCRYPTO} ${LIBZ} +DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} diff --git a/usr.bin/ssh/ssh/Makefile b/usr.bin/ssh/ssh/Makefile index d30b74ad0f1..828384d0115 100644 --- a/usr.bin/ssh/ssh/Makefile +++ b/usr.bin/ssh/ssh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.60 2013/06/19 05:27:06 deraadt Exp $ +# $OpenBSD: Makefile,v 1.61 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -31,5 +31,5 @@ LDADD+= -lgssapi -lkrb5 -lhx509 -lasn1 -lheimntlm LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase .endif # KERBEROS5 -DPADD+= ${LIBCRYPTO} ${LIBZ} LDADD+= -lcrypto -lutil -lz +DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index 5caa77eeaaf..72ef5da3a42 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.76 2013/06/19 05:27:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.77 2013/07/02 13:32:38 markus Exp $ .PATH: ${.CURDIR}/.. @@ -34,8 +34,8 @@ LDADD+= -lwind -lroken -lcom_err -lpthread -lheimbase -lkafs DPADD+= ${LIBGSSAPI} ${LIBKRB5} .endif -DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} LDADD+= -lcrypto -lutil -lz +DPADD+= ${LIBCRYPTO} ${LIBUTIL} ${LIBZ} .if (${TCP_WRAPPERS:L} == "yes") CFLAGS+= -DLIBWRAP |