diff options
author | andrew <andrew@FreeBSD.org> | 2015-11-09 17:29:07 +0800 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-11-09 17:29:07 +0800 |
commit | 2e40d0ac4cd8748417783248d69bab99094d7cb5 (patch) | |
tree | c6905291b86b99121a298a1ce57415411c9ffefc /databases/db48 | |
parent | 312ac5a51d7f3ffe4c3731d4b72f5e412d31760c (diff) | |
download | freebsd-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/db48')
-rw-r--r-- | databases/db48/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/db48/Makefile b/databases/db48/Makefile index d8e5c39b1085..3e010b76e8f9 100644 --- a/databases/db48/Makefile +++ b/databases/db48/Makefile @@ -35,7 +35,7 @@ USE_LDCONFIG= yes .include <bsd.port.options.mk> -.if ${ARCH} == "armv6" +.if ${ARCH} == "aarch64" || ${ARCH} == "armv6" # db48 uses a deprecated instruction for mutexes on ARM, fbsd bug#197227 CONFIGURE_ARGS+= --enable-posixmutexes .endif |