summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2016-04-21 14:01:05 +0000
committerSteve Wills <swills@FreeBSD.org>2016-04-21 14:01:05 +0000
commit9f60ff7938308e7f20c810470cd3f56cbaa55bd3 (patch)
tree51c680dc0eac36c11a3592faf4bd5749f72573d5 /x11
parentUpdate devel/elixir-plug to version 1.1.4. (diff)
x11/pixman: fix build on powerpc64/powerpc
Reviewed by: dumbbell, kwm
Notes
Notes: svn path=/head/; revision=413732
Diffstat (limited to 'x11')
-rw-r--r--x11/pixman/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile
index 4d83eff3a954..89c7243311d0 100644
--- a/x11/pixman/Makefile
+++ b/x11/pixman/Makefile
@@ -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>