aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2011-05-18 06:26:08 +0800
committerpav <pav@FreeBSD.org>2011-05-18 06:26:08 +0800
commitb8d578b15cf3b509a73099b860d3891661237bc0 (patch)
treed5e59f162e52b29fa32709d7b0865c781c0ef3b5 /databases
parent180002c04f42a27bccfbd92e8123eaf8e1e2e3a0 (diff)
downloadfreebsd-ports-gnome-b8d578b15cf3b509a73099b860d3891661237bc0.tar.gz
freebsd-ports-gnome-b8d578b15cf3b509a73099b860d3891661237bc0.tar.zst
freebsd-ports-gnome-b8d578b15cf3b509a73099b860d3891661237bc0.zip
- Mark BROKEN on FreeBSD 9.X: does not link
libpq/auth.o: In function `pg_GSS_error': auth.c:(.text+0x6e): undefined reference to `gss_display_status' [..] Reported by: pointyhat
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql84-server/Makefile5
-rw-r--r--databases/postgresql90-server/Makefile5
2 files changed, 8 insertions, 2 deletions
diff --git a/databases/postgresql84-server/Makefile b/databases/postgresql84-server/Makefile
index f0ae3ded65a2..031bf88a4140 100644
--- a/databases/postgresql84-server/Makefile
+++ b/databases/postgresql84-server/Makefile
@@ -160,8 +160,11 @@ INSTALL_TARGET= install
INSTALL_TARGET= install-strip
. endif
-.if (${OSVERSION} >= 700000) && !defined(WITHOUT_GSSAPI)
+.if !defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+=--with-gssapi
+.if ${OSVERSION} >= 900000
+BROKEN= does not link on FreeBSD 9.X
+.endif
.else
CONFIGURE_ARGS+=--without-gssapi
.endif
diff --git a/databases/postgresql90-server/Makefile b/databases/postgresql90-server/Makefile
index f38e097c3fe0..fc1857d300bb 100644
--- a/databases/postgresql90-server/Makefile
+++ b/databases/postgresql90-server/Makefile
@@ -167,8 +167,11 @@ INSTALL_TARGET= install
INSTALL_TARGET= install-strip
. endif
-.if (${OSVERSION} >= 700000) && !defined(WITHOUT_GSSAPI)
+.if !defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+=--with-gssapi
+.if ${OSVERSION} >= 900000
+BROKEN= does not link on FreeBSD 9.X
+.endif
.else
CONFIGURE_ARGS+=--without-gssapi
.endif