diff --git a/opencv.changes b/opencv.changes index fef60da..84812ea 100644 --- a/opencv.changes +++ b/opencv.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Fri May 10 09:59:31 UTC 2013 - hrvoje.senjan@gmail.com + +- Disable SSE3 for all architectures (bnc#814333) + +------------------------------------------------------------------- +Thu May 9 20:53:43 UTC 2013 - hrvoje.senjan@gmail.com + +- Disable SSE(2) on non x86_64 architectures, causes crashing + kde#276923, bnc#789173 + ------------------------------------------------------------------- Thu Apr 11 16:01:08 EEST 2013 - koprok@nand.bg diff --git a/opencv.spec b/opencv.spec index e3ca62e..6e2d89a 100644 --- a/opencv.spec +++ b/opencv.spec @@ -131,6 +131,11 @@ cmake -DCMAKE_BUILD_TYPE=Release \ -DWITH_OPENGL=ON \ -DWITH_UNICAP=ON \ -DWITH_XINE=ON \ +%ifnarch x86_64 + -DENABLE_SSE=0 \ + -DENABLE_SSE2=0 \ +%endif + -DENABLE_SSE3=0 \ .. make %{?_smp_mflags} VERBOSE=1