svn commit: r339519 - head/multimedia/libvpx

Ashish SHUKLA ashish at FreeBSD.org
Sun Jan 12 16:08:27 UTC 2014


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


More information about the svn-ports-all mailing list