diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2016-07-15 12:55:42 +0800 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2016-07-15 12:55:42 +0800 |
commit | 4eaa4a9dbe4b3e055055257dedd3153ad8088add (patch) | |
tree | 2b350c709d302530a1abe98a8ce236a8547478d7 /graphics | |
parent | afb2268a389d534a39f5930da34cdd1b2219f654 (diff) | |
download | freebsd-ports-gnome-4eaa4a9dbe4b3e055055257dedd3153ad8088add.tar.gz freebsd-ports-gnome-4eaa4a9dbe4b3e055055257dedd3153ad8088add.tar.zst freebsd-ports-gnome-4eaa4a9dbe4b3e055055257dedd3153ad8088add.zip |
Ensure, SSE4 is still used on systems, where the feature is present.
Duh...
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/lepton/files/patch-cpu | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/lepton/files/patch-cpu b/graphics/lepton/files/patch-cpu index 763c149eb95e..0a6b8d5fcddf 100644 --- a/graphics/lepton/files/patch-cpu +++ b/graphics/lepton/files/patch-cpu @@ -1,15 +1,15 @@ -Make -- or attempt to -- the code work on CPUs with only SSE3 +Make -- or attempt to -- the code work on CPUs with only SSSE3 instruction set... -mi --- src/lepton/idct.cc +++ src/lepton/idct.cc -@@ -1,8 +1,6 @@ +@@ -1,8 +1,7 @@ /* -*-mode:c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -#include <emmintrin.h> -#include <smmintrin.h> --#include <immintrin.h> + #include <immintrin.h> #include "../vp8/util/aligned_block.hh" +#include "../vp8/util/mm_mullo_epi32.hh" |