blob: 5284019fe8836b782b812a4a0ea6c6e29737f5a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1.1.1 2008/03/04 12:41:36 adam Exp $
PKG_SUPPORTED_OPTIONS+= # empty
.include "../../mk/bsd.options.mk"
###
### PAM authentication for the PostgreSQL backend.
###
.if !empty(PKG_OPTIONS:Mpam)
. include "../../mk/pam.buildlink3.mk"
CONFIGURE_ARGS+= --with-pam
.endif
|