blob: 150a7ba9b199faecea993bbabe6e2c671cb776a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# $NetBSD: options.mk,v 1.3 2005/06/06 11:43:50 tron Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xchat
PKG_SUPPORTED_OPTIONS= inet6 ssl socks5
PKG_SUGGESTED_OPTIONS= ssl
PKG_OPTIONS_LEGACY_OPTS+= socks:socks5
.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:Msocks5)
CONFIGURE_ARGS+= --enable-socks
.endif
###
### IPv6 support.
###
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
|