diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-12 09:16:55 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-12 09:16:55 +0000 |
commit | d4585df428d79685f00a7f8007f2151433b9779c (patch) | |
tree | f3269dc844fccaef9d7a45f62587d17775833ceb /lib/pixman | |
parent | 42bb1a22471c0ea486b00d71ff735d78373923ad (diff) |
unbreak arm builds by disabling simd and neon support for now.
Diffstat (limited to 'lib/pixman')
-rw-r--r-- | lib/pixman/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/pixman/Makefile.bsd-wrapper b/lib/pixman/Makefile.bsd-wrapper index 63b440407..310364807 100644 --- a/lib/pixman/Makefile.bsd-wrapper +++ b/lib/pixman/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2009/06/05 20:14:27 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.8 2009/06/12 09:16:54 matthieu Exp $ SHARED_LIBS= pixman-1 15.8 @@ -6,4 +6,8 @@ SHARED_LIBS= pixman-1 15.8 CONFIGURE_ARGS += --disable-sse2 .endif +.if ${MACHINE_ARCH} == arm +CONFIGURE_ARGS += --disable-arm-simd --disable-arm-neon +.endif + .include <bsd.xorg.mk> |