svn commit: r204334 - head/secure/libexec/sftp-server

Dag-Erling Smorgrav des at FreeBSD.org
Thu Feb 25 21:26:51 UTC 2010


Author: des
Date: Thu Feb 25 21:26:50 2010
New Revision: 204334
URL: http://svn.freebsd.org/changeset/base/204334

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

Modified:
  head/secure/libexec/sftp-server/Makefile

Modified: head/secure/libexec/sftp-server/Makefile
==============================================================================
--- head/secure/libexec/sftp-server/Makefile	Thu Feb 25 21:21:34 2010	(r204333)
+++ head/secure/libexec/sftp-server/Makefile	Thu Feb 25 21:26:50 2010	(r204334)
@@ -5,8 +5,11 @@ SRCS=   sftp-server.c sftp-common.c sftp
 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>
 


More information about the svn-src-all mailing list