d1fbe9bc09
The option --enable-lzo was removed in 2011, the option --enable-local-libopts was removed in January 2022. Bump PKGREVISION.
22 lines
527 B
Makefile
22 lines
527 B
Makefile
# $NetBSD: options.mk,v 1.5 2022/02/06 20:54:24 rillig Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gnutls
|
|
PKG_SUPPORTED_OPTIONS= dane guile
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdane)
|
|
.include "../../net/unbound/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-libdane
|
|
PLIST_SRC+= PLIST.dane
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-libdane
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mguile)
|
|
.include "../../lang/guile22/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-guile
|
|
PLIST_SRC+= PLIST.guile
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-guile
|
|
.endif
|