mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-30 08:48:07 -07:00
climits is for PATH_MAX. Just a quick fix, might still be incomplete. Will look at these more closely and merge in patchset at a later date. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
18 lines
423 B
Diff
18 lines
423 B
Diff
Missing includes that seem to only affect musl+>=gcc-16
|
|
--- a/src/3rdparty/chromium/sandbox/linux/services/proc_util.cc
|
|
+++ b/src/3rdparty/chromium/sandbox/linux/services/proc_util.cc
|
|
@@ -13,4 +13,5 @@
|
|
#include <unistd.h>
|
|
|
|
+#include <climits>
|
|
#include <memory>
|
|
|
|
--- a/src/3rdparty/gn/src/gn/pool.h
|
|
+++ b/src/3rdparty/gn/src/gn/pool.h
|
|
@@ -6,4 +6,5 @@
|
|
#define TOOLS_GN_POOL_H_
|
|
|
|
+#include <cstdint>
|
|
#include <string>
|
|
|