Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Aug 2015 18:58:19 +0000 (UTC)
From:      Thomas Zander <riggs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r394522 - branches/2015Q3/multimedia/ffmpeg
Message-ID:  <201508171858.t7HIwJS3081439@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: riggs
Date: Mon Aug 17 18:58:18 2015
New Revision: 394522
URL: https://svnweb.freebsd.org/changeset/ports/394522

Log:
  MFH: r394414
  
  Fix SIGBUS crashes on several popular ARM SoCs
  
  PR:		200609
  Submitted by:	rwestlun@gmail.com
  Approved by:	ports-secteam (delphij)

Modified:
  branches/2015Q3/multimedia/ffmpeg/Makefile
Directory Properties:
  branches/2015Q3/   (props changed)

Modified: branches/2015Q3/multimedia/ffmpeg/Makefile
==============================================================================
--- branches/2015Q3/multimedia/ffmpeg/Makefile	Mon Aug 17 18:49:42 2015	(r394521)
+++ branches/2015Q3/multimedia/ffmpeg/Makefile	Mon Aug 17 18:58:18 2015	(r394522)
@@ -19,7 +19,7 @@ BUILD_DEPENDS=	yasm:${PORTSDIR}/devel/ya
 
 HAS_CONFIGURE=	yes
 CONFIGURE_LOG=	config.err
-USES=		cpe gmake pkgconfig perl5 tar:bzip2
+USES=		compiler cpe gmake pkgconfig perl5 tar:bzip2
 USE_LDCONFIG=	yes
 USE_PERL5=	build
 WANT_SDL=	yes
@@ -245,8 +245,11 @@ CONFIGURE_ARGS+=	--enable-memalign-hack
 .endif
 
 .if ${ARCH} == "armv6"
+CONFIGURE_ARGS+=	--disable-fast-unaligned
+.if ${CHOSEN_COMPILER_TYPE} == "clang"
 CONFIGURE_ENV+=	ASFLAGS=-no-integrated-as
 .endif
+.endif
 
 DATADIR=	${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}
 DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508171858.t7HIwJS3081439>