blob: 670a4caacd4fcafba7686cd7437c72860268bdab (
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
31
32
33
34
35
36
37
38
39
40
|
# $NetBSD: options.mk,v 1.3 2019/05/23 19:23:07 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.pfqueue
PKG_SUPPORTED_OPTIONS= exim postfix socket
PKG_SUGGESTED_OPTIONS= postfix socket
.include "../../mk/bsd.options.mk"
PLIST_VARS+= exim postfix socket
###
### Enable Exim support
###
.if !empty(PKG_OPTIONS:Mexim)
PFQ_BACKENDS+= libpfq_exim.la
PLIST.exim= yes
.endif
###
### Enable Postfix support
###
.if !empty(PKG_OPTIONS:Mpostfix)
PFQ_BACKENDS+= libpfq_postfix2.la
PLIST.postfix= yes
.endif
###
### Enable socket support
###
.if !empty(PKG_OPTIONS:Msocket)
PFQ_BACKENDS+= libpfq_socket.la
PLIST.socket= yes
.endif
SUBST_CLASSES+= backends
SUBST_STAGE.backends= pre-configure
SUBST_MESSAGE.backends= Enabling backends
SUBST_FILES.backends= backends/Makefile.in
SUBST_VARS.backends= PFQ_BACKENDS
|