cf2bdd4578
Fix socks option (USE_SOCKS previously could not have worked for various reasons). Fix a few pkglint quoting warnings.
14 lines
357 B
Makefile
14 lines
357 B
Makefile
# $NetBSD: options.mk,v 1.1 2005/12/02 17:06:04 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.tinyproxy
|
|
PKG_SUPPORTED_OPTIONS+= socks5
|
|
|
|
PKG_SUGGESTED_OPTIONS+= socks5
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Msocks5)
|
|
CONFIGURE_ARGS+= --enable-socks
|
|
BUILDLINK_TRANSFORM+= l:socks:socks5
|
|
.include "../../net/socks5/buildlink3.mk"
|
|
.endif
|