diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-01 17:40:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-10-01 17:40:02 +0000 |
commit | 64991366757f952b31ef1bcef69ad8de3366ad67 (patch) | |
tree | 1089bc854d41c3f6750906f73b9c90fd4e3b4f46 /usr.bin/ssh/sshd/Makefile | |
parent | fe071aec0fddb84a27ac2feb5a7daa1812d42848 (diff) |
Why do I need this library dependency workaround for static builds.. anyone?
Diffstat (limited to 'usr.bin/ssh/sshd/Makefile')
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index e36de051933..842ca08db58 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -4,8 +4,6 @@ PROG= sshd BINOWN= root BINMODE=555 BINDIR= /usr/sbin -LDADD= -lcrypto -ldes -lutil -lz -DPADD= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ} MAN= sshd.8 SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ @@ -32,3 +30,6 @@ minfd.h: gen_minfd ./gen_minfd $(USER_SHELLS) > minfd.h .include <bsd.prog.mk> + +LDADD+= -lcrypto -ldes -lutil -lz +DPADD+= ${LIBCRYPTO} ${LIBDES} ${LIBUTIL} ${LIBZ} |