raven-rhel8/base/qt6/qt6-qtwebengine/chromium-force-system-libevent.patch

26 lines
895 B
Diff
Raw Normal View History

2025-01-21 10:00:50 +06:00
description: use system libevent
author: Michael Gilbert <mgilbert@debian.org>
--- a/src/3rdparty/chromium/third_party/webrtc/rtc_base/task_queue_libevent.cc
+++ b/src/3rdparty/chromium/third_party/webrtc/rtc_base/task_queue_libevent.cc
@@ -36,7 +36,7 @@
#include "rtc_base/synchronization/mutex.h"
#include "rtc_base/thread_annotations.h"
#include "rtc_base/time_utils.h"
-#include "third_party/libevent/event.h"
+#include <event.h>
namespace webrtc {
namespace {
--- a/src/3rdparty/chromium/base/message_loop/message_pump_libevent.cc
+++ b/src/3rdparty/chromium/base/message_loop/message_pump_libevent.cc
@@ -20,7 +20,7 @@
#include "base/time/time.h"
#include "base/trace_event/base_tracing.h"
#include "build/build_config.h"
-#include "third_party/libevent/event.h"
+#include <event.h>
#if BUILDFLAG(ENABLE_MESSAGE_PUMP_EPOLL)
#include "base/message_loop/message_pump_epoll.h"