aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorThomas Zander <riggs@FreeBSD.org>2017-01-01 18:48:11 +0000
committerThomas Zander <riggs@FreeBSD.org>2017-01-01 18:48:11 +0000
commit528393c94960e0d596031c36cbe21efdca6e5452 (patch)
treece3323d649a73f990fb57ba0349ec11b68800f6b /UPDATING
parent4f39e2c85f6c016fa9ca06dd9ef4ba47cca61c10 (diff)
downloadports-528393c94960e0d596031c36cbe21efdca6e5452.tar.gz
ports-528393c94960e0d596031c36cbe21efdca6e5452.zip
Reflect changes to OPTIMIZED_CFLAGS handling in multimedia/ffmpeg
PR: 215402 Submitted by: jbeich
Notes
Notes: svn path=/head/; revision=430270
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING18
1 files changed, 18 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 06cf3c1b00c5..5fa99343c585 100644
--- a/UPDATING
+++ b/UPDATING
@@ -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@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@FreeBSD.org