From owner-svn-ports-all@freebsd.org Sun Jan 1 18:48:12 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7078DC9A294; Sun, 1 Jan 2017 18:48:12 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 407921B14; Sun, 1 Jan 2017 18:48:12 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v01ImB7Z034910; Sun, 1 Jan 2017 18:48:11 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v01ImBnk034909; Sun, 1 Jan 2017 18:48:11 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201701011848.v01ImBnk034909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 1 Jan 2017 18:48:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430270 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jan 2017 18:48:12 -0000 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@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