249e3912b3
ssl, as there is no reason for it to be package-specific. Most visible changes: - Switch from GTK1 to FLTK2 - Tabbed browsing - Downloads and FTP now work (at the expense of a wget dependency)
17 lines
385 B
Makefile
17 lines
385 B
Makefile
# $NetBSD: options.mk,v 1.2 2008/10/31 02:02:44 snj Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dillo
|
|
PKG_SUPPORTED_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
|