Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jan 2014 16:08:27 +0000 (UTC)
From:      Ashish SHUKLA <ashish@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r339519 - head/multimedia/libvpx
Message-ID:  <201401121608.s0CG8RSu093882@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ashish
Date: Sun Jan 12 16:08:27 2014
New Revision: 339519
URL: http://svnweb.freebsd.org/changeset/ports/339519

Log:
  - Fix breakage on 9-STABLE due to GCC changes in r260075
  
  PR:		ports/185657
  Submitted by:	Helge Oldach <ports-libvpx-jan14 at oldach.net>

Modified:
  head/multimedia/libvpx/Makefile

Modified: head/multimedia/libvpx/Makefile
==============================================================================
--- head/multimedia/libvpx/Makefile	Sun Jan 12 16:03:49 2014	(r339518)
+++ head/multimedia/libvpx/Makefile	Sun Jan 12 16:08:27 2014	(r339519)
@@ -55,6 +55,12 @@ USE_GCC=	yes
 .endif
 .endif
 
+# Workaround for GCC in 9.x post r260075
+# OSVERSION taken from r260135, the closest OSVERSION
+.if ${OSVERSION} >  902505 && ${OSVERSION} < 1000000
+CFLAGS+=	-flax-vector-conversions
+.endif
+
 .if ${OSVERSION} >= 1000000
 CONFIGURE_ARGS+=	--disable-unit-tests
 .endif



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