Remove -static; it was a failed experiment that got committed by accident.

This commit is contained in:
Dag-Erling Smørgrav 2010-02-25 21:26:50 +00:00
parent 522a35959a
commit 329a9a116e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=204334

View File

@ -5,8 +5,11 @@ SRCS= sftp-server.c sftp-common.c sftp-server-main.c
MAN= sftp-server.8
CFLAGS+=-I${SSHDIR} -include ssh_namespace.h
# required when linking with a dynamic libssh
SRCS+= roaming_dummy.c
DPADD= ${LIBSSH} ${LIBCRYPT} ${LIBCRYPTO} ${LIBZ}
LDADD= -lcrypt -lcrypto -lz -static -lssh
LDADD= -lcrypt -lcrypto -lz -lssh
.include <bsd.prog.mk>