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 AFF717A477 for ; Thu, 23 Jun 2016 11:25:20 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 644F685E87; Thu, 23 Jun 2016 11:25:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E80CE85E83 for ; Thu, 23 Jun 2016 11:25:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id f5GcnsVFvZlm for ; Thu, 23 Jun 2016 11:25:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5093085E57 for ; Thu, 23 Jun 2016 11:25:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2AA63FBB5; Thu, 23 Jun 2016 11:25:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14666811198360" MIME-Version: 1.0 Date: Thu, 23 Jun 2016 11:25:19 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/multimedia/ffmpeg2 To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20160623112519.2AA63FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_14666811198360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Jun 23 11:25:19 UTC 2016 Modified Files: pkgsrc/multimedia/ffmpeg2: Makefile Log Message: Use stackrealign on newer GCC as well PR/51122: with gcc 5.x x86 32-bit ffmpeg2 and ffmpeg3 need extra compile flags To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/multimedia/ffmpeg2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14666811198360 Content-Disposition: inline Content-Length: 912 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/ffmpeg2/Makefile diff -u pkgsrc/multimedia/ffmpeg2/Makefile:1.29 pkgsrc/multimedia/ffmpeg2/Makefile:1.30 --- pkgsrc/multimedia/ffmpeg2/Makefile:1.29 Thu May 5 07:03:47 2016 +++ pkgsrc/multimedia/ffmpeg2/Makefile Thu Jun 23 11:25:19 2016 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2016/05/05 07:03:47 leot Exp $ +# $NetBSD: Makefile,v 1.30 2016/06/23 11:25:19 maya Exp $ PKGNAME= ${DISTNAME:S/ffmpeg/ffmpeg2/} -PKGREVISION= 1 +PKGREVISION= 2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://ffmpeg.mplayerhq.hu/ COMMENT= Decoding, encoding and streaming software (v2.x) @@ -49,7 +49,7 @@ post-install: || !empty(CC_VERSION:Mgcc-4.[01].*) \ || empty(CC_VERSION:Mgcc*) CONFIGURE_ARGS+= --disable-asm -. elif !empty(CC_VERSION:Mgcc-4.*) +. elif !empty(CC_VERSION:Mgcc-[456].*) CFLAGS+= -mstackrealign -mpreferred-stack-boundary=4 . endif .endif --_----------=_14666811198360--