summaryrefslogtreecommitdiff
path: root/databases/postgresql83/options.mk
diff options
context:
space:
mode:
authoradam <adam>2011-02-15 09:06:31 +0000
committeradam <adam>2011-02-15 09:06:31 +0000
commit126078484926ea1a54b0b9b32dbeb71fc723005a (patch)
treeab9b83b9ea5dd260a82b92867a595d5da1e7cbdd /databases/postgresql83/options.mk
parent737976877d78bee13d1a6b9cd7642cebaa6a0b22 (diff)
downloadpkgsrc-126078484926ea1a54b0b9b32dbeb71fc723005a.tar.gz
Changes 8.3.14:
* Avoid failures when "EXPLAIN" tries to display a simple-form CASE expression. * Fix assignment to an array slice that is before the existing range of subscripts. * Avoid unexpected conversion overflow in planner for very distant date values. * Fix pg_restore's text output for large objects (BLOBs) when standard_conforming_strings is on. * Fix erroneous parsing of tsquery values containing ... & !(subexpression) | ... * Fix buffer overrun in "contrib/intarray"'s input function for the query_int type. * Fix bug in "contrib/seg"'s GiST picksplit algorithm.
Diffstat (limited to 'databases/postgresql83/options.mk')
-rw-r--r--databases/postgresql83/options.mk15
1 files changed, 13 insertions, 2 deletions
diff --git a/databases/postgresql83/options.mk b/databases/postgresql83/options.mk
index 9e7aeaba67f..b1e256e3b4c 100644
--- a/databases/postgresql83/options.mk
+++ b/databases/postgresql83/options.mk
@@ -1,11 +1,22 @@
-# $NetBSD: options.mk,v 1.5 2010/12/19 09:53:52 adam Exp $
+# $NetBSD: options.mk,v 1.6 2011/02/15 09:06:32 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql83
-PKG_SUPPORTED_OPTIONS= gssapi kerberos ldap pam xml
+PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml
.include "../../mk/bsd.options.mk"
###
+### Bonjour support.
+###
+.if !empty(PKG_OPTIONS:Mbonjour)
+CONFIGURE_ARGS+= --with-bonjour
+. if ${OPSYS} != "Darwin"
+LIBS+= -ldns_sd
+. endif
+. include "../../net/mDNSResponder/buildlink3.mk"
+.endif
+
+###
### GSSAPI authentication for the PostgreSQL backend.
###
.if !empty(PKG_OPTIONS:Mgssapi)