View | Details | Raw Unified | Return to bug 215402
Collapse All | Expand All

(-)b/UPDATING (+18 lines)
Lines 6-11 You should get into the habit of checking this file for changes each time Link Here
6
you update your ports collection, before attempting any port upgrades.
6
you update your ports collection, before attempting any port upgrades.
7
7
8
20161218:
8
20161218:
9
  AFFECTS: multimedia/ffmpeg
10
  AUTHOR: jbeich@FreeBSD.org
11
12
  OPTIMIZED_CFLAGS switched to only use vendor optimizations which
13
  means -ffast-math -fno-finite-math-only are no longer applied. If
14
  you did like the former behavior consider adding
15
16
      # multimedia/ffmpeg/Makefile.local
17
      OPTIMIZED_CFLAGS_CFLAGS += -ffast-math -fno-finite-math-only
18
19
  or
20
21
      # /etc/make.conf
22
      .if ${.CURDIR:M*/multimedia/ffmpeg}
23
      CFLAGS += -ffast-math -fno-finite-math-only
24
      .endif
25
26
20161218:
9
  AFFECTS: users of www/nghttp2
27
  AFFECTS: users of www/nghttp2
10
  AUTHOR: sunpoet@FreeBSD.org
28
  AUTHOR: sunpoet@FreeBSD.org
11
29
(-)b/multimedia/ffmpeg/Makefile (-3 / +3 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	ffmpeg
4
PORTNAME=	ffmpeg
5
PORTVERSION=	3.2.2
5
PORTVERSION=	3.2.2
6
PORTREVISION=	1
6
PORTREVISION=	2
7
PORTEPOCH=	1
7
PORTEPOCH=	1
8
CATEGORIES=	multimedia audio ipv6 net
8
CATEGORIES=	multimedia audio ipv6 net
9
MASTER_SITES=	http://ffmpeg.org/releases/
9
MASTER_SITES=	http://ffmpeg.org/releases/
Lines 37-43 OPTIONS_DEFINE= ALSA AMR_NB AMR_WB ASS BS2B CACA CDIO CELT CHROMAPRINT DC1394 \ Link Here
37
		XVIDEO ZIMG ZMQ ZVBI
37
		XVIDEO ZIMG ZMQ ZVBI
38
38
39
OPTIONS_DEFAULT=	FFSERVER FONTCONFIG FREETYPE FREI0R GMP GNUTLS ICONV \
39
OPTIONS_DEFAULT=	FFSERVER FONTCONFIG FREETYPE FREI0R GMP GNUTLS ICONV \
40
			OPENCV RTCPU SCHROEDINGER THEORA V4L VAAPI VDPAU \
40
			OPENCV OPTIMIZED_CFLAGS RTCPU SCHROEDINGER THEORA V4L VAAPI VDPAU \
41
			VORBIS VPX X264 XVID
41
			VORBIS VPX X264 XVID
42
42
43
OPTIONS_RADIO=	RTMP SSL
43
OPTIONS_RADIO=	RTMP SSL
Lines 271-277 OPENSSL_CONFIGURE_ENABLE= openssl Link Here
271
OPENSSL_IMPLIES=	NONFREE
271
OPENSSL_IMPLIES=	NONFREE
272
272
273
# optimizations
273
# optimizations
274
OPTIMIZED_CFLAGS_CFLAGS=-O3 -ffast-math -fno-finite-math-only -fomit-frame-pointer
274
OPTIMIZED_CFLAGS_CONFIGURE_ENABLE=	optimizations
275
275
276
# opus
276
# opus
277
OPUS_LIB_DEPENDS=	libopus.so:audio/opus
277
OPUS_LIB_DEPENDS=	libopus.so:audio/opus

Return to bug 215402