blob: 465f1f25369c58316d4d7f36a5ee5408917da29d (
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
|
# $NetBSD: options.mk,v 1.10 2009/01/06 12:08:01 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.msmtp
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
PKG_OPTIONS_GROUP.ssl= gnutls ssl
PKG_SUPPORTED_OPTIONS= gnome-keyring gsasl idn inet6
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
###
### SSL support
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=openssl
.elif !empty(PKG_OPTIONS:Mgnutls)
. include "../../security/gnutls/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=gnutls
.else
CONFIGURE_ARGS+= --disable-ssl
.endif
###
### GNUsasl support
###
.if !empty(PKG_OPTIONS:Mgsasl)
. include "../../security/gsasl/buildlink3.mk"
.endif
###
### Internationalized Domain Names (IDN) support
###
.if !empty(PKG_OPTIONS:Midn)
. include "../../devel/libidn/buildlink3.mk"
CONFIGURE_ARGS+= --with-libidn
.endif
###
### GNOME keyring support
###
.if !empty(PKG_OPTIONS:Mgnome-keyring)
. include "../../security/gnome-keyring/buildlink3.mk"
CONFIGURE_ARGS+= --with-gnome-keyring
USE_TOOLS+= pkg-config
.endif
|