Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Sep 2017 14:04:11 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r449285 - head/x11/pixman
Message-ID:  <201709051404.v85E4B1s087492@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709051404.v85E4B1s087492>