diff options
author | maya <maya> | 2016-06-23 11:25:48 +0000 |
---|---|---|
committer | maya <maya> | 2016-06-23 11:25:48 +0000 |
commit | 74073f32ab4a8f9f779f8df4a69905b4f3b25723 (patch) | |
tree | ce870bc456855d9d315ec31ac0c84a2f0d845555 /multimedia/ffmpeg3/Makefile | |
parent | 50c23df06cc82b81de50fec315c0c77261227a45 (diff) | |
download | pkgsrc-74073f32ab4a8f9f779f8df4a69905b4f3b25723.tar.gz |
Use stackrealign on newer GCC as well
Addresses PR/51122: with gcc 5.x x86 32-bit ffmpeg2 and ffmpeg3 need extra compile flags
Diffstat (limited to 'multimedia/ffmpeg3/Makefile')
-rw-r--r-- | multimedia/ffmpeg3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/ffmpeg3/Makefile b/multimedia/ffmpeg3/Makefile index f29365b0b13..08f88fc0476 100644 --- a/multimedia/ffmpeg3/Makefile +++ b/multimedia/ffmpeg3/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2016/05/05 07:03:47 leot Exp $ +# $NetBSD: Makefile,v 1.7 2016/06/23 11:25:48 maya Exp $ PKGNAME= ${DISTNAME:S/ffmpeg/ffmpeg3/} -PKGREVISION= 1 +PKGREVISION= 2 MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://ffmpeg.mplayerhq.hu/ COMMENT= Decoding, encoding and streaming software (v3.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 |