svn commit: r449285 - head/x11/pixman

Steve Wills swills at FreeBSD.org
Tue Sep 5 14:04:12 UTC 2017


Author: swills
Date: Tue Sep  5 14:04:10 2017
New Revision: 449285
URL: https://svnweb.freebsd.org/changeset/ports/449285

Log:
  x11/pixman: fix build on armv6 with clang 5
  
  PR:		221814
  Submitted by:	mikael.urankar at gmail.com

Modified:
  head/x11/pixman/Makefile

Modified: head/x11/pixman/Makefile
==============================================================================
--- head/x11/pixman/Makefile	Tue Sep  5 13:31:26 2017	(r449284)
+++ head/x11/pixman/Makefile	Tue Sep  5 14:04:10 2017	(r449285)
@@ -25,6 +25,11 @@ MAKE_ARGS=      SUBDIRS=pixman
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH} == "armv6"
+BUILD_DEPENDS+=	${LOCALBASE}/bin/as:devel/binutils
+CONFIGURE_ENV+=	CCASFLAGS="${CFLAGS} -no-integrated-as"
+.endif
+
 .if ${ARCH} == "powerpc64" || ${ARCH} == "powerpc"
 CONFIGURE_ARGS+=	--disable-vmx
 .endif


More information about the svn-ports-all mailing list