Date: Thu, 21 Apr 2016 14:01:06 +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: r413732 - head/x11/pixman Message-ID: <201604211401.u3LE16Df095729@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604211401.u3LE16Df095729>