commit:     9af33e44316132f988b060aac667b8588167ae9d
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Thu Apr 27 19:39:47 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May  4 16:27:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9af33e44

media-video/mpv: adjust SSE4.1 intrinsics check in 9999

SSE4.1 intrinsics are built only with ffmpeg-API<3.3.
Reorder conditions a bit for a potential speedup.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-video/mpv/mpv-9999.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild
index 1f527b95990..e13ffde3161 100644
--- a/media-video/mpv/mpv-9999.ebuild
+++ b/media-video/mpv/mpv-9999.ebuild
@@ -145,7 +145,8 @@ mpv_check_compiler() {
                if ( use opengl || use egl ) && ! tc-has-tls; then
                        die "Your compiler lacks C++11 TLS support. Use 
GCC>=4.8 or Clang>=3.3."
                fi
-               if use vaapi && use cpu_flags_x86_sse4_1 && ! tc-is-gcc; then
+               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

Reply via email to