Reflect changes to OPTIMIZED_CFLAGS handling in multimedia/ffmpeg

PR:		215402
Submitted by:	jbeich
This commit is contained in:
Thomas Zander 2017-01-01 18:48:11 +00:00
parent 4f39e2c85f
commit 528393c949
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=430270

View File

@ -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