2fef2f1f4e
This is a C client library for the Riemann monitoring system, providing a convenient and simple API, high test coverage and a copyleft license, along with API and ABI stability.
16 lines
367 B
Makefile
16 lines
367 B
Makefile
# $NetBSD: options.mk,v 1.1 2016/10/13 11:03:13 fhajny Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.riemann-client
|
|
PKG_SUPPORTED_OPTIONS= tls
|
|
PKG_SUGGESTED_OPTIONS+= tls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= tls
|
|
|
|
.if !empty(PKG_OPTIONS:Mtls)
|
|
CONFIGURE_ARGS+= --enable-tls
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-tls
|
|
.endif
|