svn commit: r430270 - head

Thomas Zander riggs at FreeBSD.org
Sun Jan 1 18:48:12 UTC 2017


Author: riggs
Date: Sun Jan  1 18:48:11 2017
New Revision: 430270
URL: https://svnweb.freebsd.org/changeset/ports/430270

Log:
  Reflect changes to OPTIMIZED_CFLAGS handling in multimedia/ffmpeg
  
  PR:		215402
  Submitted by:	jbeich

Modified:
  head/UPDATING

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Sun Jan  1 18:47:01 2017	(r430269)
+++ head/UPDATING	Sun Jan  1 18:48:11 2017	(r430270)
@@ -5,6 +5,24 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20170102:
+  AFFECTS: multimedia/ffmpeg
+  AUTHOR: jbeich at FreeBSD.org
+
+  OPTIMIZED_CFLAGS switched to only use vendor optimizations which
+  means -ffast-math -fno-finite-math-only are no longer applied. If
+  you did like the former behavior consider adding
+
+      # multimedia/ffmpeg/Makefile.local
+      OPTIMIZED_CFLAGS_CFLAGS += -ffast-math -fno-finite-math-only
+
+  or
+
+      # /etc/make.conf
+      .if ${.CURDIR:M*/multimedia/ffmpeg}
+      CFLAGS += -ffast-math -fno-finite-math-only
+      .endif
+
 20161230:
   AFFECTS: users of x11/xfce4-terminal
   AUTHOR: olivierd at FreeBSD.org


More information about the svn-ports-all mailing list