aboutsummaryrefslogtreecommitdiffstats
path: root/databases/db5
diff options
context:
space:
mode:
authorandrew <andrew@FreeBSD.org>2015-11-09 17:29:07 +0800
committerandrew <andrew@FreeBSD.org>2015-11-09 17:29:07 +0800
commit2e40d0ac4cd8748417783248d69bab99094d7cb5 (patch)
treec6905291b86b99121a298a1ce57415411c9ffefc /databases/db5
parent312ac5a51d7f3ffe4c3731d4b72f5e412d31760c (diff)
downloadfreebsd-ports-gnome-2e40d0ac4cd8748417783248d69bab99094d7cb5.tar.gz
freebsd-ports-gnome-2e40d0ac4cd8748417783248d69bab99094d7cb5.tar.zst
freebsd-ports-gnome-2e40d0ac4cd8748417783248d69bab99094d7cb5.zip
As with armv6 we need to use POSIX mutexes. Without this the ports try to
use fcntl mutexes and fails as they are deprecated. Approved by: mandree (maintainer) Differential Revision: https://reviews.freebsd.org/D4107
Diffstat (limited to 'databases/db5')
-rw-r--r--databases/db5/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/db5/Makefile b/databases/db5/Makefile
index 822a53846031..95187b664bc1 100644
--- a/databases/db5/Makefile
+++ b/databases/db5/Makefile
@@ -39,7 +39,7 @@ SQL_DESC= Enable SQL API (EXPERIMENTAL)
.include <bsd.port.options.mk>
-.if ${ARCH} == "armv6"
+.if ${ARCH} == "aarch64" || ${ARCH} == "armv6"
# db5 uses a deprecated instruction for mutexes on ARM, fbsd bug#197227
CONFIGURE_ARGS+= --enable-posixmutexes
.endif