diff options
author | linimon <linimon@FreeBSD.org> | 2017-09-01 22:49:09 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2017-09-01 22:49:09 +0800 |
commit | 25f030dec31fb7eb7ef08dce73fd364c694fecaf (patch) | |
tree | b080dc6d9ba09dbeff5f567c4e39f263f1600b00 /databases | |
parent | 9c97c9d1b8e086a3f898f2caa3def6d0f56f97f7 (diff) | |
download | freebsd-ports-graphics-25f030dec31fb7eb7ef08dce73fd364c694fecaf.tar.gz freebsd-ports-graphics-25f030dec31fb7eb7ef08dce73fd364c694fecaf.tar.zst freebsd-ports-graphics-25f030dec31fb7eb7ef08dce73fd364c694fecaf.zip |
The src tree is splitting 32-bit arm support into 'armv6' and the new
'armv7'. This patch adds armv7 support. It should provide no regression
on any existing architecture.
PR: 221921
Approved by: maintainer
Diffstat (limited to 'databases')
-rw-r--r-- | databases/db5/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/db5/Makefile b/databases/db5/Makefile index 57e78326e8b..bbdff2e8aae 100644 --- a/databases/db5/Makefile +++ b/databases/db5/Makefile @@ -69,7 +69,7 @@ DOCS_INSTALL_TARGET= install_docs .include <bsd.port.options.mk> -.if ${ARCH} == "aarch64" || ${ARCH:Marmv6*} +.if ${ARCH} == aarch64 || ${ARCH:Marmv*} # db5 uses a deprecated instruction for mutexes on ARM, fbsd bug#197227 # and also bug#205001 CONFIGURE_ARGS+= --enable-posixmutexes |