mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 01:38:07 -04:00
19 lines
420 B
Makefile
19 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
|