summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorhiramatsu <hiramatsu@pkgsrc.org>2005-10-27 07:22:16 +0000
committerhiramatsu <hiramatsu@pkgsrc.org>2005-10-27 07:22:16 +0000
commit6cdb7e5da220e283801baa05ff4ae58a54997e78 (patch)
treef4f9cb22cde8e029edc0cfc437dcf226b101f352 /databases
parent9bf418e4de707034a7326a2909ac1254d8852203 (diff)
downloadpkgsrc-6cdb7e5da220e283801baa05ff4ae58a54997e78.tar.gz
configure should be run without "--enable-thread-safety" on OpenBSD.
Diffstat (limited to 'databases')
-rw-r--r--databases/postgresql80-client/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/databases/postgresql80-client/Makefile b/databases/postgresql80-client/Makefile
index 2a900c689ab..fa65a18dd71 100644
--- a/databases/postgresql80-client/Makefile
+++ b/databases/postgresql80-client/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2005/10/23 20:16:52 jlam Exp $
+# $NetBSD: Makefile,v 1.12 2005/10/27 07:22:16 hiramatsu Exp $
PKGNAME= postgresql80-client-${BASE_VERS}
COMMENT= PostgreSQL database client programs
@@ -14,10 +14,11 @@ CONFIGURE_ARGS+= --with-zlib
CONFLICTS+= postgresql80-lib-*
CONFLICTS+= postgresql80-docs-*
-# The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
+# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
# NetBSD (missing strerror_r) or DragonFly.
+# 2. configure with --enable-thread-safety fails on OpenBSD.
#
-.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly"
+.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "OpenBSD"
PGSQL_THREAD_SAFETY?= no
.endif
PGSQL_THREAD_SAFETY?= yes