File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
meta-chromium/recipes-browser/chromium Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ SRC_URI:append:libc-musl = "\
46
46
file://musl/0019-adjust-thread-stack-sizes.patch \
47
47
file://musl/0020-Fix-tab-crashes-on-musl.patch \
48
48
file://musl/0021-pthread_getname_np.patch \
49
+ file://musl/0022-sys-stat.patch \
49
50
file://musl/scoped-file.patch \
50
51
file://musl/fix-narrowing-cast.patch \
51
52
"
Original file line number Diff line number Diff line change
1
+ Include sys/stat.h for stat64 definition
2
+
3
+ fixes
4
+ In file included from ../../base/files/file_enumerator.cc:5:
5
+ ../../base/files/file_enumerator.h:78:20: error: field has incomplete type 'base::stat_wrapper_t' (aka 'stat64')
6
+ stat_wrapper_t stat_;
7
+ ^
8
+ ../../base/files/file.h:28:8: note: forward declaration of 'stat64'
9
+ struct stat64;
10
+ ^
11
+ 1 error generated.
12
+
13
+
14
+ Upstream-Status: Pending
15
+
16
+ Signed-off-by: Khem Raj <raj.khem@gmail.com>
17
+
18
+ --- a/base/files/file.h
19
+ +++ b/base/files/file.h
20
+ @@ -8,6 +8,7 @@
21
+ #include <stdint.h>
22
+
23
+ #include <string>
24
+ + #include <sys/stat.h>
25
+
26
+ #include "base/base_export.h"
27
+ #include "base/containers/span.h"
You can’t perform that action at this time.
0 commit comments