summaryrefslogtreecommitdiff
path: root/mail/fdm/options.mk
blob: b443d9d520c519d97b19e5f3d3a2571df9ba2d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $NetBSD: options.mk,v 1.3 2018/05/04 15:33:22 leot Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.fdm
PKG_SUPPORTED_OPTIONS=	debug pcre
PKG_SUGGESTED_OPTIONS=	pcre

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

#
# Debug
#
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+=	--enable-debug
.endif

#
# PCRE support
#
.if !empty(PKG_OPTIONS:Mpcre)
MAKE_ENV+=	PCRE=1
.  include "../../devel/pcre/buildlink3.mk"
.endif