diff options
author | Ilya Tumaykin <itumaykin@gmail.com> | 2017-04-27 23:39:53 +0300 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-05-04 18:28:20 +0200 |
commit | 6dabaa91e0958415f72bad11bae8366d338989d9 (patch) | |
tree | 0b5babb6eeb3f8a8fc2c37b612b0df1d6c261064 /media-video | |
parent | media-video/mpv: require ffmpeg-API>=3.3 for vaapi or vdpau in 9999 (diff) | |
download | gentoo-6dabaa91e0958415f72bad11bae8366d338989d9.tar.gz gentoo-6dabaa91e0958415f72bad11bae8366d338989d9.tar.bz2 gentoo-6dabaa91e0958415f72bad11bae8366d338989d9.zip |
media-video/mpv: remove obsolete USE for SSE4.1 in 9999
SSE4.1 bits were only used for vaapi with ffmpeg-API<3.3.
Support for this combo was removed in the previous commit.
Closes: https://github.com/gentoo/gentoo/pull/4510
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mpv/mpv-9999.ebuild | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index fb8cd67ab792..ee9678229c5f 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -32,7 +32,6 @@ IUSE="+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda doc drm dvb luajit openal +opengl oss pulseaudio raspberry-pi rubberband samba sdl selinux test tools +uchardet v4l vaapi vdpau vf-dlopen wayland +X +xv zsh-completion" -IUSE+=" cpu_flags_x86_sse4_1" REQUIRED_USE=" || ( cli libmpv ) @@ -152,10 +151,6 @@ mpv_check_compiler() { if use opengl && ! tc-has-tls; then die "Your compiler lacks C++11 TLS support. Use GCC>=4.8 or Clang>=3.3." fi - if ! tc-is-gcc && use vaapi && use cpu_flags_x86_sse4_1 && \ - { has_version '<media-video/ffmpeg-3.3:0' || has_version '<media-video/libav-13:0'; }; then - die "${PN} requires GCC for SSE4.1 intrinsics." - fi fi } |