- Enable LTO for x86_64 - add gcc-enable-lto.patch and gcc-lto-rsp-clobber.patch patches. - Refresh patch: * chromium-non-void-return.patch - Add new patch to fix aarch64 build: * chromium-fix_swiftshader.patch - Update %arm build, but keep it disabled for now, as ld requires lots of RAM - Up to 72.0.3626.14 - Update chromium-vaapi.patch - Update chromium-system-icu.patch - Increase %limit_build value to avoid OOM - Rework aarch64 build requirements - Reduce jumbo_file_merge_limit to 8 for aarch64 to avoid OOM - Fix again aarch64 skia build: * chromium-skia-aarch64-buildfix.patch - 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 OBS-URL: https://build.opensuse.org/request/show/720533 OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium?expand=0&rev=1284
16 lines
717 B
Diff
16 lines
717 B
Diff
diff -up chromium-48.0.2564.116/services/device/usb/usb_context.cc.modern-libusbx chromium-48.0.2564.116/device/usb/usb_context.cc
|
|
--- chromium-48.0.2564.116/services/device/usb/usb_context.cc.modern-libusbx 2016-02-24 10:21:10.534996028 -0500
|
|
+++ chromium-48.0.2564.116/services/device/usb/usb_context.cc 2016-02-24 10:22:28.270499864 -0500
|
|
@@ -57,7 +57,11 @@ void UsbContext::UsbEventHandler::Run()
|
|
|
|
void UsbContext::UsbEventHandler::Stop() {
|
|
base::subtle::Release_Store(&running_, 0);
|
|
+#ifdef LIBUSB_API_VERSION >= 0x01000105
|
|
+ libusb_interrupt_event_handler(context_);
|
|
+#else
|
|
libusb_interrupt_handle_event(context_);
|
|
+#endif
|
|
}
|
|
|
|
UsbContext::UsbContext(PlatformUsbContext context) : context_(context) {
|