diff options
author | agc <agc@pkgsrc.org> | 1998-06-11 16:08:59 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-06-11 16:08:59 +0000 |
commit | 1ef3c27ad6ea9d846443f9880cecc038713aa972 (patch) | |
tree | a23ff0c77982fa9d31c92aba761a3464cc365512 /net/Makefile | |
parent | cf9420e142098f24808abec6897e346adcde037e (diff) | |
download | pkgsrc-1ef3c27ad6ea9d846443f9880cecc038713aa972.tar.gz |
Add socks4.
Use bsd.prefs.mk to work out which version of socks support is needed.
This defaults to version 5.
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/Makefile b/net/Makefile index 6cc293de06f..f31c357eb0e 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1,7 +1,9 @@ -# $NetBSD: Makefile,v 1.30 1998/06/09 16:42:45 agc Exp $ +# $NetBSD: Makefile,v 1.31 1998/06/11 16:08:59 agc Exp $ # FreeBSD Id: Makefile,v 1.117 1997/08/16 03:11:52 gpalmer Exp # +.include "../mk/bsd.prefs.mk" + SUBDIR += archie SUBDIR += arpwatch # SUBDIR += ascend-radius @@ -63,7 +65,11 @@ SUBDIR += sirc SUBDIR += sniffit # SUBDIR += slirp +.ifdef USE_SOCKS + SUBDIR += socks${USE_SOCKS} +.else SUBDIR += socks5 +.endif # SUBDIR += strobe # SUBDIR += sup # SUBDIR += tac_plus |