git: 78d1e7e3c761 - main - devel/efl: Fix build on armv6/armv7.

From: Gleb Popov <arrowd_at_FreeBSD.org>
Date: Tue, 26 Oct 2021 09:15:50 UTC
The branch main has been updated by arrowd:

URL: https://cgit.FreeBSD.org/ports/commit/?id=78d1e7e3c761c7c5821d6bda70d157fa3d179460

commit 78d1e7e3c761c7c5821d6bda70d157fa3d179460
Author:     Robert Clausecker <fuz@fuz.su>
AuthorDate: 2021-10-25 18:52:02 +0000
Commit:     Gleb Popov <arrowd@FreeBSD.org>
CommitDate: 2021-10-26 09:15:45 +0000

    devel/efl: Fix build on armv6/armv7.
    
    The clang's integrated assembler is having problems with assembly sources, so
    bring in binutils as.
    
    PR:             259443
---
 devel/efl/Makefile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/devel/efl/Makefile b/devel/efl/Makefile
index 604d7d49a2fa..7d67b864655a 100644
--- a/devel/efl/Makefile
+++ b/devel/efl/Makefile
@@ -305,6 +305,11 @@ MESON_ARGS+=			${EVAS-LOADERS-DISABLER}
 MESON_ARGS+=	-Db_asneeded=false
 .endif
 
+.if ${ARCH:Marmv?}
+BUILD_DEPENDS+=	as:devel/binutils@native
+CFLAGS+=	-no-integrated-as
+.endif
+
 .if ${PORT_OPTIONS:MLUA} && ${PORT_OPTIONS:MCXX}
 EFL_BINDINGS=	-Dbindings=lua,cxx
 .else