update Tue Jun 22 06:37:08 PDT 2010
[pkgsrc.git] / databases / postgresql84 / options.mk
1 # $NetBSD: options.mk,v 1.3 2010/01/22 20:12:11 adam Exp $
2
3 PKG_SUPPORTED_OPTIONS+=         # empty
4
5 .include "../../mk/bsd.options.mk"
6
7 ###
8 ### GSSAPI authentication for the PostgreSQL backend.
9 ###
10 .if !empty(PKG_OPTIONS:Mgssapi)
11 CONFIGURE_ARGS+=        --with-gssapi
12 .endif
13
14 ###
15 ### Kerberos5 authentication for the PostgreSQL backend.
16 ###
17 .if !empty(PKG_OPTIONS:Mkrb5)
18 .  include "../../mk/krb5.buildlink3.mk"
19 CONFIGURE_ARGS+=        --with-krb5
20 .endif
21
22 ###
23 ### LDAP authentication for the PostgreSQL backend.
24 ###
25 .if !empty(PKG_OPTIONS:Mldap)
26 .  include "../../databases/openldap-client/buildlink3.mk"
27 CONFIGURE_ARGS+=        --with-ldap
28 .endif
29
30 ###
31 ### PAM authentication for the PostgreSQL backend.
32 ###
33 .if !empty(PKG_OPTIONS:Mpam)
34 .  include "../../mk/pam.buildlink3.mk"
35 CONFIGURE_ARGS+=        --with-pam
36 .endif