diff options
author | pho <pho@pkgsrc.org> | 2014-05-10 06:10:19 +0000 |
---|---|---|
committer | pho <pho@pkgsrc.org> | 2014-05-10 06:10:19 +0000 |
commit | 4928aca0a1a1c4327e8a3485a9888234c4a7af07 (patch) | |
tree | 03bfcb2c358a3494e10e92383cf0a6564cb87537 /multimedia/libvpx | |
parent | 361836cfcf7c006363dadd089789607a516f9555 (diff) | |
download | pkgsrc-4928aca0a1a1c4327e8a3485a9888234c4a7af07.tar.gz |
GCC >= 4.4 is not required for architectures without ssse3.
Diffstat (limited to 'multimedia/libvpx')
-rw-r--r-- | multimedia/libvpx/Makefile | 4 |
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 |