Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Jul 2017 23:42:04 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r445838 - head/multimedia/libx264
Message-ID:  <201707142342.v6ENg448043999@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Jul 14 23:42:03 2017
New Revision: 445838
URL: https://svnweb.freebsd.org/changeset/ports/445838

Log:
  multimedia/libx264: yasm is only used on x86, other archs use GNU as
  
  PR:		220694
  Approved by:	koobs (maintainer)
  MFH:		2017Q3 (minor build optimization)
  Differential Revision:	https://reviews.freebsd.org/D11566

Modified:
  head/multimedia/libx264/Makefile   (contents, props changed)

Modified: head/multimedia/libx264/Makefile
==============================================================================
--- head/multimedia/libx264/Makefile	Fri Jul 14 23:41:54 2017	(r445837)
+++ head/multimedia/libx264/Makefile	Fri Jul 14 23:42:03 2017	(r445838)
@@ -17,7 +17,9 @@ OPTIONS_DEFINE=		ASM HI10P OPENCL
 OPTIONS_DEFAULT=	ASM OPENCL
 OPTIONS_EXCLUDE=	FFMS GPAC LAVF LSMASH SWSCALE
 
-ASM_BUILD_DEPENDS=	yasm>=1.2.0:devel/yasm
+ASM_BUILD_DEPENDS=	${ASM_BUILD_DEPENDS_${ARCH}}
+ASM_BUILD_DEPENDS_amd64=${ASM_BUILD_DEPENDS_i386}
+ASM_BUILD_DEPENDS_i386=	yasm>=1.2.0:devel/yasm
 
 HI10P_DESC=		Enable High 10 Profile 10-bit encoding
 HI10P_CONFIGURE_ON=	--bit-depth=10



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