svn commit: r497149 - head/multimedia/x264

Mark Linimon linimon at FreeBSD.org
Fri Mar 29 14:58:46 UTC 2019


Author: linimon
Date: Fri Mar 29 14:58:45 2019
New Revision: 497149
URL: https://svnweb.freebsd.org/changeset/ports/497149

Log:
  New libx264 releases now seem to detect and use Altivec during
  compilation, which breaks with base GCC because it doesn't support
  some functions that libx264 uses.
  
  Set GCC option by default for powerpc and powerpc64.
  
  PR:		236679
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/multimedia/x264/Makefile

Modified: head/multimedia/x264/Makefile
==============================================================================
--- head/multimedia/x264/Makefile	Fri Mar 29 14:50:58 2019	(r497148)
+++ head/multimedia/x264/Makefile	Fri Mar 29 14:58:45 2019	(r497149)
@@ -54,6 +54,8 @@ OPTIONS_DEFINE+=	DEBUG FFMS GCC LAVF PGO SWSCALE
 OPTIONS_RADIO+=		MP4
 OPTIONS_RADIO_MP4+=	GPAC LSMASH
 OPTIONS_DEFAULT+=	FFMS LAVF LSMASH SWSCALE
+OPTIONS_DEFAULT_powerpc=	GCC
+OPTIONS_DEFAULT_powerpc64=	GCC
 
 FFMS_DESC=		FFmpeg Source input support
 GPAC_DESC=		GPAC library support


More information about the svn-ports-all mailing list