832d6e1283
PKG_OPTIONS_OPTIONAL_GROUPS and allow building with neither. The default remains openssl.
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.14 2021/01/08 18:18:58 schmonz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.wget
|
|
PKG_SUPPORTED_OPTIONS= idn inet6 psl
|
|
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
|
|
PKG_OPTIONS_GROUP.ssl= gnutls openssl
|
|
PKG_SUGGESTED_OPTIONS= idn inet6 openssl psl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Support IDN
|
|
###
|
|
.if !empty(PKG_OPTIONS:Midn)
|
|
.include "../../devel/libidn2/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-iri
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-iri
|
|
.endif
|
|
|
|
###
|
|
### Support IPv6
|
|
###
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
###
|
|
### Support SSL
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mgnutls)
|
|
. include "../../security/gnutls/buildlink3.mk"
|
|
CONFIGURE_ARGS+=--with-ssl=gnutls
|
|
.elif !empty(PKG_OPTIONS:Mopenssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+=--with-ssl=openssl
|
|
.else
|
|
CONFIGURE_ARGS+=--with-ssl=no
|
|
.endif
|
|
|
|
###
|
|
### Support Public Suffix List
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpsl)
|
|
. include "../../www/libpsl/buildlink3.mk"
|
|
CONFIGURE_ARGS+=--with-libpsl
|
|
.else
|
|
CONFIGURE_ARGS+=--without-libpsl
|
|
.endif
|