From 017cbf8956bdf23c46114c225bc609630aa8375d Mon Sep 17 00:00:00 2001 From: fredb Date: Sat, 25 May 2002 19:24:00 +0000 Subject: The name of the socks4 static library is "libsocks4.a" not "libsocks.a", and we don't need to add a run-path in either USE_SOCKS case, as we always link against a static socks library. (To link against a shared socks5, we would have to use "-lsocks5_sh".) --- comms/kermit/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comms/kermit') diff --git a/comms/kermit/Makefile b/comms/kermit/Makefile index e47f8c19943..74e063ef1b3 100644 --- a/comms/kermit/Makefile +++ b/comms/kermit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2002/01/28 12:06:55 agc Exp $ +# $NetBSD: Makefile,v 1.37 2002/05/25 19:24:00 fredb Exp $ # $FreeBSD Id: Makefile,v 1.17 1997/11/26 23:16:51 jseger Exp # @@ -68,11 +68,11 @@ LIBS+= -ltermcap .if ${USE_SOCKS} == 4 DEPENDS+= socks4-2.2:../../net/socks4 KFLAGS+= -DSOCKS -LIBS+= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lsocks +LIBS+= -L${PREFIX}/lib -lsocks4 .elif ${USE_SOCKS} == 5 DEPENDS+= socks5-1.0.2:../../net/socks5 KFLAGS+= -DSOCKS -DCK_SOCKS5 -LIBS+= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lsocks5 +LIBS+= -L${PREFIX}/lib -lsocks5 .endif .endif -- cgit v1.2.3