summaryrefslogtreecommitdiff
path: root/net/nagios-nrpe/options.mk
blob: a108c16e521363fd5890266505143e778925ebe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# $NetBSD: options.mk,v 1.6 2014/10/11 23:57:04 gdt Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.nagios-nrpe
PKG_SUPPORTED_OPTIONS=	ssl tcpwrappers nagios-nrpe-args
PKG_SUGGESTED_OPTIONS=	ssl tcpwrappers

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+=	--enable-ssl
.  include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+=	--with-ssl=${SSLBASE}
CONFIGURE_ARGS+=	--with-ssl-lib=${SSLBASE}/lib
CONFIGURE_ARGS+=	--with-ssl-inc=${SSLBASE}/include
.else
CONFIGURE_ARGS+=	--disable-ssl
.endif

.if !empty(PKG_OPTIONS:Mnagios-nrpe-args)
CONFIGURE_ARGS+=       --enable-command-args
.else
# Upstream's configure enables command args when given
# "--disable-command-args", so (departing from pkgsrc norms) don't
# give the --disable option.
#CONFIGURE_ARGS+=       --disable-command-args
.endif

.if !empty(PKG_OPTIONS:Mtcpwrappers)
.  include "../../security/tcp_wrappers/buildlink3.mk"
.endif