svn commit: r413732 - head/x11/pixman

Steve Wills swills at FreeBSD.org
Thu Apr 21 14:01:07 UTC 2016


Author: swills
Date: Thu Apr 21 14:01:05 2016
New Revision: 413732
URL: https://svnweb.freebsd.org/changeset/ports/413732

Log:
  x11/pixman: fix build on powerpc64/powerpc
  
  Reviewed by:	dumbbell, kwm

Modified:
  head/x11/pixman/Makefile

Modified: head/x11/pixman/Makefile
==============================================================================
--- head/x11/pixman/Makefile	Thu Apr 21 12:58:32 2016	(r413731)
+++ head/x11/pixman/Makefile	Thu Apr 21 14:01:05 2016	(r413732)
@@ -23,4 +23,10 @@ INSTALL_TARGET=	install-strip
 # where the build of the tests crashes ld; see PR bin/202284.
 MAKE_ARGS=      SUBDIRS=pixman
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "powerpc64" || ${ARCH} == "powerpc"
+CONFIGURE_ARGS+=	--disable-vmx
+.endif
+
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list