blob: e595c08146a971b5ecac3baef1e19b79a473decb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2019/03/10 19:16:46 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.chrony
PKG_SUPPORTED_OPTIONS= nettle
PKG_SUGGESTED_OPTIONS= nettle
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mnettle)
USE_TOOLS+= pkg-config
.include "../../security/nettle/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-nettle
.endif
|