svn commit: r486510 - head/x11/pixman

Jan Beich jbeich at FreeBSD.org
Mon Dec 3 10:47:50 UTC 2018


Author: jbeich
Date: Mon Dec  3 10:47:49 2018
New Revision: 486510
URL: https://svnweb.freebsd.org/changeset/ports/486510

Log:
  x11/pixman: actually use GNU as from devel/binutils
  
  ./pixman-arm-simd-asm.h:695: Warning: ignoring redefinition of register alias 'wk4'
  ./pixman-arm-neon-asm.h:941: Warning: ignoring redefinition of register alias 'dst_w'
  ./pixman-arm-neon-asm.h:702: Warning: ignoring redefinition of register alias 'orig_w'
  pixman-arm-neon-asm-bilinear.S:612: Warning: ignoring redefinition of register alias 'top'
  
  PR:		221814 233740
  Reported by:	Charlie Li
  Approved by:	portmgr blanket

Modified:
  head/x11/pixman/Makefile   (contents, props changed)

Modified: head/x11/pixman/Makefile
==============================================================================
--- head/x11/pixman/Makefile	Mon Dec  3 10:16:33 2018	(r486509)
+++ head/x11/pixman/Makefile	Mon Dec  3 10:47:49 2018	(r486510)
@@ -2,6 +2,7 @@
 
 PORTNAME=	pixman
 PORTVERSION=	0.34.0
+PORTREVISION=	1
 CATEGORIES=	x11
 
 MAINTAINER=	x11 at FreeBSD.org
@@ -27,7 +28,7 @@ MAKE_ARGS=      SUBDIRS=pixman
 
 .if ${ARCH} == "armv6" || ${ARCH} == "armv7"
 BUILD_DEPENDS+=	${LOCALBASE}/bin/as:devel/binutils
-CONFIGURE_ENV+=	CCASFLAGS="${CFLAGS} -no-integrated-as"
+CONFIGURE_ENV+=	CCASFLAGS="${CFLAGS} -B${LOCALBASE}/bin -no-integrated-as"
 .endif
 
 .if ${ARCH} == "powerpc64" || ${ARCH} == "powerpc"


More information about the svn-ports-all mailing list