summaryrefslogtreecommitdiff
path: root/multimedia/libvpx
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2013-12-01 23:26:25 +0000
committerbsiegert <bsiegert@pkgsrc.org>2013-12-01 23:26:25 +0000
commit5e78e580ee9b20d9c93cdd7554aa21b66bcd28d2 (patch)
tree8a749b4c4b74ef43e01e48c432d41dd5dc61842d /multimedia/libvpx
parentc790cddeeec1f457ded5371f375c2600d4792ba5 (diff)
downloadpkgsrc-5e78e580ee9b20d9c93cdd7554aa21b66bcd28d2.tar.gz
Finally fix the build on MirBSD.
Disable SSE{2,3,4} in the runtime CPU detection code as well.
Diffstat (limited to 'multimedia/libvpx')
-rw-r--r--multimedia/libvpx/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/multimedia/libvpx/Makefile b/multimedia/libvpx/Makefile
index 07ba77b0375..782a03b3ccb 100644
--- a/multimedia/libvpx/Makefile
+++ b/multimedia/libvpx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.31 2013/11/29 18:33:54 bsiegert Exp $
+# $NetBSD: Makefile,v 1.32 2013/12/01 23:26:25 bsiegert Exp $
DISTNAME= libvpx-v1.2.0
PKGNAME= ${DISTNAME:S/-v/-/}
@@ -80,7 +80,10 @@ CONFIGURE_ARGS+= --disable-runtime-cpu-detect
.if ${OPSYS} == "MirBSD"
BUILDLINK_TRANSFORM+= rm:-lrt
-CONFIGURE_ENV+= sse2=no sse3=no ssse3=no sse4_1=no runtime_cpu_detect=no
+# Compiler is too old for these newfangled features
+CONFIGURE_ENV+= sse2=no sse3=no ssse3=no sse4_1=no
+# runtime_cpu_detect=no
+CONFIGURE_ENV+= RTCD_OPTIONS='--disable-sse2 --disable-sse3 --disable-ssse3 --disable-sse4_1'
CONFIGURE_ARGS+= --disable-runtime-cpu-detect
.endif