# $NetBSD: options.mk,v 1.3 2005/01/10 20:59:43 adrianp Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.xchat2 PKG_SUPPORTED_OPTIONS= inet6 ssl socks .if !defined(PKG_OPTIONS.xchat2) PKG_DEFAULT_OPTIONS+= ssl .endif .include "../../mk/bsd.options.mk" ### ### Use OpenSSL libraries for connecting to ircs servers ### .if !empty(PKG_OPTIONS:Mssl) . include "../../security/openssl/buildlink3.mk" CONFIGURE_ARGS+= --enable-openssl=${SSLBASE} .else CONFIGURE_ARGS+= --enable-openssl=no .endif ### ### Support for connecting thru SOCKS servers ### .if !empty(PKG_OPTIONS:Msocks) CONFIGURE_ARGS+= --enable-socks .endif ### ### IPv6 support. ### .if !empty(PKG_OPTIONS:Minet6) CONFIGURE_ARGS+= --enable-ipv6 .endif