2006-10-18 20:38:57 +02:00
|
|
|
# $NetBSD: options.mk,v 1.4 2006/10/18 18:38:57 adam Exp $
|
2005-08-05 21:43:44 +02:00
|
|
|
|
|
|
|
PKG_SUPPORTED_OPTIONS+= pgsql-hier-query
|
2005-10-05 15:29:49 +02:00
|
|
|
|
2005-08-05 21:43:44 +02:00
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
###
|
|
|
|
### PAM authentication for the PostgreSQL backend.
|
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mpam)
|
|
|
|
. include "../../mk/pam.buildlink3.mk"
|
2006-10-18 20:38:57 +02:00
|
|
|
CONFIGURE_ARGS+= --with-pam
|
2005-08-05 21:43:44 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
###
|
|
|
|
### Support for hierarchical queries with Oracle-like CONNECT BY syntax.
|
2005-10-23 22:16:52 +02:00
|
|
|
### See http://gppl.moonbone.ru/README.html for details. Note that use of
|
|
|
|
### this patch is discouraged by PostgreSQL developers because it is
|
|
|
|
### considered somewhat buggy and incomplete.
|
2005-08-05 21:43:44 +02:00
|
|
|
###
|
|
|
|
.if !empty(PKG_OPTIONS:Mpgsql-hier-query)
|
|
|
|
PATCH_SITES= http://gppl.moonbone.ru/
|
|
|
|
PATCHFILES= hier-Pg8.0.3-0.5.5.diff.gz
|
|
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
PLIST_SUBST+= PG_HIER=
|
|
|
|
.else
|
|
|
|
PLIST_SUBST+= PG_HIER="@comment "
|
|
|
|
.endif
|