Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Mar 2002 23:12:43 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 8131 for review
Message-ID:  <200203210712.g2L7Chg26960@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8131

Change 8131 by peter@peter_overcee on 2002/03/20 23:12:37

	add libz explicitly here for cross compiling help.  Otherwise ld
	tries to resolve the dependency as /usr/lib/libz.so.2 which doesn't
	mix well with ia64 code when compiling on i386

Affected files ...

... //depot/projects/ia64/secure/libexec/sftp-server/Makefile#3 edit

Differences ...

==== //depot/projects/ia64/secure/libexec/sftp-server/Makefile#3 (text+ko) ====

@@ -5,8 +5,8 @@
 SRCS=   sftp-server.c sftp-common.c
 MAN=	sftp-server.8
 
-LDADD+=	-lssh -lcrypto
-DPADD+=	${LIBSSH} ${LIBCRYPTO}
+LDADD+=	-lssh -lcrypto -lz
+DPADD+=	${LIBSSH} ${LIBCRYPTO} ${LIBZ}
 
 .include <bsd.prog.mk>
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203210712.g2L7Chg26960>