diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-12 20:33:00 +0000 |
commit | 328a35f96fe7ec11093e3847c0943eb3a41f2b51 (patch) | |
tree | 154e7feac1d9bd8853bbdc9b7ffa45c13b83f32f /net/socks5 | |
parent | 8848ee6991e29c3c0d97e1c89906ee2b34645484 (diff) | |
download | pkgsrc-328a35f96fe7ec11093e3847c0943eb3a41f2b51.tar.gz |
LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk if
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
Diffstat (limited to 'net/socks5')
-rw-r--r-- | net/socks5/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/socks5/Makefile b/net/socks5/Makefile index 39611e9efca..ab310d7ec11 100644 --- a/net/socks5/Makefile +++ b/net/socks5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2001/02/23 13:38:41 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2001/06/12 20:33:06 jlam Exp $ # FreeBSD Id: Makefile,v 1.14 1997/08/28 06:49:06 obrien Exp # @@ -29,12 +29,12 @@ NO_BIN_ON_CDROM= ${RESTRICTED} WRKSRC= ${WRKDIR}/socks5-v1.0r2 GNU_CONFIGURE= yes -CONFIGURE_ENV+= LIBS=-lcrypt CONFIGURE_ARGS= --with-libconffile=${PREFIX}/etc/libsocks5.conf \ --with-srvconffile=${PREFIX}/etc/socks5.conf \ --with-srvpidfile=/var/run/socks5.pid \ --with-srvidtfile=/var/run/socks5.ident \ ${EXTRA_CONFIGURE_ARGS} +LIBS= -lcrypt post-install: ${MV} ${PREFIX}/lib/libsocks5_sh.so ${PREFIX}/lib/libsocks5_sh.so.0.0 |