mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
This bump includes a patch which adds cmake4 compatibility. Rebased patch 0001. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
714 B
Diff
17 lines
714 B
Diff
Fix compilation on non-sse2 platforms
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
|
|
diff -uNr libyuv-1411.org/include/libyuv/scale_row.h libyuv-1411/include/libyuv/scale_row.h
|
|
--- libyuv-1411.org/include/libyuv/scale_row.h 2015-05-22 23:39:21.000000000 +0200
|
|
+++ libyuv-1411/include/libyuv/scale_row.h 2015-05-25 12:35:17.000000000 +0200
|
|
@@ -24,7 +24,7 @@
|
|
#if !defined(LIBYUV_DISABLE_X86) && \
|
|
(defined(_M_IX86) || \
|
|
(defined(__x86_64__) && !defined(LIBYUV_ENABLE_ROWWIN)) || \
|
|
- defined(__i386__))
|
|
+ (defined(__i386__) && defined(__SSE2__)))
|
|
#define HAS_FIXEDDIV1_X86
|
|
#define HAS_FIXEDDIV_X86
|
|
#define HAS_SCALEADDROW_SSE2
|