Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 857F17A0F3 for ; Wed, 10 May 2017 10:45:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 01F8484DFC; Wed, 10 May 2017 10:45:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 872EB84DA7 for ; Wed, 10 May 2017 10:45:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HhI4dUyCjtYT for ; Wed, 10 May 2017 10:45:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EBA3A84D92 for ; Wed, 10 May 2017 10:45:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E69CBFBE4; Wed, 10 May 2017 10:45:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1494413107258810" MIME-Version: 1.0 Date: Wed, 10 May 2017 10:45:07 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/multimedia/libvpx To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170510104507.E69CBFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1494413107258810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed May 10 10:45:07 UTC 2017 Modified Files: pkgsrc/multimedia/libvpx: Makefile Log Message: Disable libyuv's SSE code on 32-bit SunOS, it doesn't compile at present. To generate a diff of this commit: cvs rdiff -u -r1.68 -r1.69 pkgsrc/multimedia/libvpx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1494413107258810 Content-Disposition: inline Content-Length: 750 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/libvpx/Makefile diff -u pkgsrc/multimedia/libvpx/Makefile:1.68 pkgsrc/multimedia/libvpx/Makefile:1.69 --- pkgsrc/multimedia/libvpx/Makefile:1.68 Wed May 3 08:38:43 2017 +++ pkgsrc/multimedia/libvpx/Makefile Wed May 10 10:45:07 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2017/05/03 08:38:43 jperkin Exp $ +# $NetBSD: Makefile,v 1.69 2017/05/10 10:45:07 jperkin Exp $ DISTNAME= libvpx-1.6.1 CATEGORIES= multimedia @@ -80,6 +80,8 @@ CONFIGURE_ARGS+= --target=ppc32-darwin8- CONFIGURE_ARGS+= --target=x86_64-solaris-gcc . elif ${MACHINE_ARCH} == "i386" CONFIGURE_ARGS+= --target=x86-solaris-gcc +# Disable libyuv SSE code, it doesn't compile at present. +CFLAGS+= -U__SSE2__ . endif .endif --_----------=_1494413107258810--