Summary: | multimedia/ffmpeg: New RTMP group breaks configuration | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Laurence 'GreenReaper' Parry <greenreaper> |
Component: | Individual Port(s) | Assignee: | freebsd-multimedia (Nobody) <multimedia> |
Status: | Closed FIXED | ||
Severity: | Affects Some People | Flags: | bugzilla:
maintainer-feedback?
(multimedia) |
Priority: | --- | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Laurence 'GreenReaper' Parry
2016-12-14 22:12:24 UTC
Putting all into _DEFINE basket would make FFmpeg actually build only librmtp support. $ ./configure --help | fgrep rtmp --enable-gcrypt enable gcrypt, needed for rtmp(t)e support if openssl, librtmp or gmp is not used [no] --enable-gmp enable gmp, needed for rtmp(t)e support if openssl or librtmp is not used [no] --enable-librtmp enable RTMP[E] support via librtmp [no] $ cat ./configure [...] ffrtmpcrypt_protocol_deps="!librtmp_protocol" ffrtmpcrypt_protocol_deps_any="gcrypt gmp openssl" ffrtmpcrypt_protocol_select="tcp_protocol" ffrtmphttp_protocol_deps="!librtmp_protocol" ffrtmphttp_protocol_select="http_protocol" [...] librtmp_protocol_deps="librtmp" librtmpe_protocol_deps="librtmp" librtmps_protocol_deps="librtmp" librtmpt_protocol_deps="librtmp" librtmpte_protocol_deps="librtmp" [...] rtmp_protocol_deps="!librtmp_protocol" rtmp_protocol_select="tcp_protocol" rtmpe_protocol_select="ffrtmpcrypt_protocol" rtmps_protocol_deps="!librtmp_protocol" rtmps_protocol_select="tls_protocol" rtmpt_protocol_select="ffrtmphttp_protocol" rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol" rtmpts_protocol_select="ffrtmphttp_protocol https_protocol" A commit references this bug: Author: jbeich Date: Wed Dec 14 23:17:36 UTC 2016 New revision: 428598 URL: https://svnweb.freebsd.org/changeset/ports/428598 Log: multimedia/ffmpeg: limit OPENSSL to one _RADIO group Worse is better. To fix properly one would have to replace OPENSSL in RTMP with a synthetic option that _IMPLIES=OPENSSL. PR: 215306 Reported by: Laurence 'GreenReaper' Parry Changes: head/multimedia/ffmpeg/Makefile As you're using OPENSSL disabling GMP may save you an extra dependency but otherwise shouldn't hurt. The defaults are adjusted for GNUTLS case. Alas, _IMPLIES and _PREVENTS cannot express option suggestions. |