80c3695bdb
* Enable ssl (https) option by default.
18 lines
420 B
Makefile
18 lines
420 B
Makefile
# $NetBSD: options.mk,v 1.4 2013/10/09 14:23:42 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dillo
|
|
PKG_SUPPORTED_OPTIONS= inet6 ssl
|
|
PKG_SUGGESTED_OPTIONS= inet6 ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --enable-ssl
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
.endif
|