[vlc-commits] contrib: ffmpeg: Ensure the securetransport module is disabled
Marvin Scholz
git at videolan.org
Thu Mar 8 18:29:38 CET 2018
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Thu Mar 8 18:28:04 2018 +0100| [8e426b904286bc8cd2cd3b92015135d8f783a88f] | committer: Marvin Scholz
contrib: ffmpeg: Ensure the securetransport module is disabled
The ffmpeg securetransport module uses private Apple APIs, so it can
cause rejection from the Apple appstore when this symbol is contained
in binaries, even though VLC never uses it in any way directly.
There is no point in enabling this module anyway, a VLC has it's own
implementation of TLS using either GnuTLS or SC, not relying at all on
ffmpeg for this.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8e426b904286bc8cd2cd3b92015135d8f783a88f
---
contrib/src/ffmpeg/rules.mak | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/contrib/src/ffmpeg/rules.mak b/contrib/src/ffmpeg/rules.mak
index d389be75ba..fc68f815a0 100644
--- a/contrib/src/ffmpeg/rules.mak
+++ b/contrib/src/ffmpeg/rules.mak
@@ -47,7 +47,8 @@ FFMPEGCONF += \
--disable-linux-perf
ifdef HAVE_DARWIN_OS
FFMPEGCONF += \
- --disable-videotoolbox
+ --disable-videotoolbox \
+ --disable-securetransport
endif
endif
More information about the vlc-commits
mailing list