summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorpho <pho>2014-05-10 06:10:19 +0000
committerpho <pho>2014-05-10 06:10:19 +0000
commit9fbfaf1dfd7f6b64298b40eeda9b3e5f250738de (patch)
tree28c7985503287293ec737b86d104751bfb3092d8 /multimedia
parent33374cb2f4de3cc5e47969e02c12ece905e8c42c (diff)
downloadpkgsrc-9fbfaf1dfd7f6b64298b40eeda9b3e5f250738de.tar.gz
GCC >= 4.4 is not required for architectures without ssse3.
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/libvpx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/libvpx/Makefile b/multimedia/libvpx/Makefile
index 863d40c1eb3..16a8f4046d4 100644
--- a/multimedia/libvpx/Makefile
+++ b/multimedia/libvpx/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.44 2014/05/05 21:16:28 ryoon Exp $
+# $NetBSD: Makefile,v 1.45 2014/05/10 06:10:19 pho Exp $
DISTNAME= libvpx_1.3.0.orig
PKGNAME= ${DISTNAME:S/_/-/:S/.orig//}
@@ -16,7 +16,7 @@ LICENSE= modified-bsd
.include "../../mk/bsd.prefs.mk"
.if !empty(MACHINE_PLATFORM:MOpenBSD-*-amd64)
GCC_REQD+= 4.6
-.else
+.elif ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
GCC_REQD+= 4.4
.endif