summaryrefslogtreecommitdiff
path: root/comms/kermit
diff options
context:
space:
mode:
authorrh <rh>2000-06-12 17:24:21 +0000
committerrh <rh>2000-06-12 17:24:21 +0000
commitf84253cd663e4d4019f516ac4e9b84bc25c12934 (patch)
tree17011e6526dd2bf1bd7e379b33e8b05abebd61ad /comms/kermit
parent1592c110e9781985e6bfd288ab13bed5d166426e (diff)
downloadpkgsrc-f84253cd663e4d4019f516ac4e9b84bc25c12934.tar.gz
Add ${PREFIX}/lib library search paths for SOCKS4/5
Diffstat (limited to 'comms/kermit')
-rw-r--r--comms/kermit/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/kermit/Makefile b/comms/kermit/Makefile
index 90f7e6b6524..c48c16b534f 100644
--- a/comms/kermit/Makefile
+++ b/comms/kermit/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2000/02/13 16:33:47 tron Exp $
+# $NetBSD: Makefile,v 1.27 2000/06/12 17:24:21 rh Exp $
# $FreeBSD Id: Makefile,v 1.17 1997/11/26 23:16:51 jseger Exp
#
@@ -61,11 +61,11 @@ LIBS+= -ltermcap
.if ${USE_SOCKS} == 4
DEPENDS+= socks4-2.2:../../net/socks4
KFLAGS+= -DSOCKS
-LIBS+= -lsocks
+LIBS+= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lsocks
.elif ${USE_SOCKS} == 5
DEPENDS+= socks5-1.0.2:../../net/socks5
KFLAGS+= -DSOCKS -DCK_SOCKS5
-LIBS+= -lsocks
+LIBS+= -L${PREFIX}/lib -Wl,-R${PREFIX}/lib -lsocks5
.endif
.endif