blob: 7386cda30c751b75e245ab4942be08e4dae3fc3a (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# $NetBSD: options.mk,v 1.7 2005/01/21 15:46:39 frueauf Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fetchmail
PKG_SUPPORTED_OPTIONS= inet6 kerberos4 kerberos gssapi ssl
.if !defined(PKG_OPTIONS.fetchmail)
PKG_DEFAULT_OPTIONS+= ssl
.endif
.include "../../mk/bsd.options.mk"
###
### IPv6 support.
###
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-inet6
.endif
###
### Authentication via GSSAPI (currently only over Kerberos V) support.
###
.if !empty(PKG_OPTIONS:Mgssapi)
PKG_OPTIONS+= kerberos
CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE}
.else
CONFIGURE_ARGS+= --with-gssapi=no
.endif
###
### KPOP (POP3 + Kerberos IV) support.
###
.if !empty(PKG_OPTIONS:Mkerberos4)
CRYPTO+= uses Kerberos encryption code
PKG_USE_KERBEROS= # defined
CONFIGURE_ARGS+= --with-kerberos=yes
. if empty(MACHINE_PLATFORM:MNetBSD-1.[0-4]*-i386)
REPLACE_KERBEROS_LIBS= yes
. endif
.else
CONFIGURE_ARGS+= --with-kerberos=no
.endif
###
### Kerberos V support.
###
.if !empty(PKG_OPTIONS:Mkerberos)
. include "../../mk/krb5.buildlink3.mk"
PKG_USE_KERBEROS= # defined
CONFIGURE_ARGS+= --with-kerberos5=${KRB5BASE}
.else
CONFIGURE_ARGS+= --with-kerberos5=no
.endif
###
### Support POP3 and IMAP over SSL.
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
|