svn commit: r449083 - head/databases/db5

Mark Linimon linimon at FreeBSD.org
Fri Sep 1 14:49:10 UTC 2017


Author: linimon
Date: Fri Sep  1 14:49:09 2017
New Revision: 449083
URL: https://svnweb.freebsd.org/changeset/ports/449083

Log:
  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

Modified:
  head/databases/db5/Makefile

Modified: head/databases/db5/Makefile
==============================================================================
--- head/databases/db5/Makefile	Fri Sep  1 14:46:34 2017	(r449082)
+++ head/databases/db5/Makefile	Fri Sep  1 14:49:09 2017	(r449083)
@@ -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


More information about the svn-ports-all mailing list