579e977969
CONFIGURE_ARGS.
26 lines
512 B
Makefile
26 lines
512 B
Makefile
# $NetBSD: options.mk,v 1.4 2005/12/05 23:55:15 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.wget
|
|
PKG_SUPPORTED_OPTIONS= inet6 ssl
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Support IPv6
|
|
###
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
###
|
|
### Support SSL
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+=--with-ssl=${SSLBASE:Q}
|
|
.else
|
|
CONFIGURE_ARGS+=--without-ssl
|
|
.endif
|