mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 09:07:26 -08:00
This pull request bumps this package and fixes 'ipc.h:36:36: error: uint32_t has not been declared' which made it impossible to compile the program in gcc 15. Closes: https://bugs.gentoo.org/938289 Signed-off-by: Solegaiter <meartzheast877@gmail.com> Signed-off-by: Pacho Ramos <pacho@gentoo.org>
14 lines
323 B
Diff
14 lines
323 B
Diff
# Original commit: https://github.com/Igalia/WPEBackend-fdo/commit/923ebd634949c11444fbdb6b1ee9ac62ac538ec7
|
|
diff --git a/src/ipc.h b/src/ipc.h
|
|
index c274529..f9945eb 100644
|
|
--- a/src/ipc.h
|
|
+++ b/src/ipc.h
|
|
@@ -26,6 +26,7 @@
|
|
#pragma once
|
|
|
|
#include <gio/gio.h>
|
|
+#include <stdint.h>
|
|
#include <memory>
|
|
|
|
namespace FdoIPC {
|