blob: 3c9a7acf2fb7140f67df2879f7b9b64c3a843ef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2004/11/14 16:48:55 jmmv Exp $
.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
PKG_DEFAULT_OPTIONS+= ipv6
.endif
PKG_OPTIONS_VAR= PKG_OPTIONS.gmime
PKG_SUPPORTED_OPTIONS= ipv6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mipv6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
|