- Add patch to fix aarch64 build: * chromium-crashpad-fix_aarch64.patch - Refresh patch: * chromium-non-void-return.patch - Add new patch to fix aarch64 build: * chromium-fix_swiftshader.patch - Up to 72.0.3626.14 - Update chromium-vaapi.patch - Update chromium-system-icu.patch - Rework aarch64 build requirements - Reduce jumbo_file_merge_limit to 8 for aarch64 to avoid OOM - Fix again aarch64 skia build: - Up to 71.0.3551.3 - Up to 70.0.3528.4 - Up to chromium-70.0.3521.2 - Add patch trying to build with system icu: * chromium-system-icu.patch - Up to chromium-70.0.3510.0 - Up to 69.0.3497.23 - Up to chromium-69.0.3497.12 - Add patch to fix aarch64 build: * chromium-vpx-aarch64.patch - Up to 69.0.3493.3 - Up to 69.0.3486.0 - Up to 69.0.3472.3 - Up to 69.0.3452.0 - Up to 68.0.3440.17 - Up to 68.0.3438.3 OBS-URL: https://build.opensuse.org/request/show/670066 OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium?expand=0&rev=1217
23 lines
685 B
Diff
23 lines
685 B
Diff
Index: chromium-72.0.3626.7/ui/gfx/linux/client_native_pixmap_dmabuf.cc
|
|
===================================================================
|
|
--- chromium-72.0.3626.7.orig/ui/gfx/linux/client_native_pixmap_dmabuf.cc
|
|
+++ chromium-72.0.3626.7/ui/gfx/linux/client_native_pixmap_dmabuf.cc
|
|
@@ -18,9 +18,6 @@
|
|
#include "base/trace_event/trace_event.h"
|
|
#include "build/build_config.h"
|
|
|
|
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
|
|
-#include <linux/dma-buf.h>
|
|
-#else
|
|
#include <linux/types.h>
|
|
|
|
struct dma_buf_sync {
|
|
@@ -35,7 +32,6 @@ struct dma_buf_sync {
|
|
|
|
#define DMA_BUF_BASE 'b'
|
|
#define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync)
|
|
-#endif
|
|
|
|
namespace gfx {
|
|
|