diff options
author | rh <rh@pkgsrc.org> | 2000-06-12 17:24:21 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2000-06-12 17:24:21 +0000 |
commit | 4a506322a012ca555cb8bb38a854092e9b6137a2 (patch) | |
tree | 17011e6526dd2bf1bd7e379b33e8b05abebd61ad /comms | |
parent | c8ba090ca4344f52779501a534df19fea3fd034f (diff) | |
download | pkgsrc-4a506322a012ca555cb8bb38a854092e9b6137a2.tar.gz |
Add ${PREFIX}/lib library search paths for SOCKS4/5
Diffstat (limited to 'comms')
-rw-r--r-- | comms/kermit/Makefile | 6 |
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 |