From 416e09158be122ca6c3c2bb5740985cb9e794059 Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:07:58 +0000 Subject: [PATCH 1/6] update bundle.json. Signed-off-by: flying --- bundle.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bundle.json b/bundle.json index 03ac095..e5722ec 100644 --- a/bundle.json +++ b/bundle.json @@ -36,6 +36,13 @@ "header_files": [], "header_base": "//third_party/libuv/include" } + }, + { + "name": "//third_party/libuv:uv_static", + "header": { + "header_files": [], + "header_base": "//third_party/libuv/include" + } } ], "test": [] -- Gitee From f48d9076c0d63e8fb6bcabc78ec4e74eba654815 Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:09:04 +0000 Subject: [PATCH 2/6] update test/test-idna.c. Signed-off-by: flying --- test/test-idna.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-idna.c b/test/test-idna.c index 77af3a9..08094f7 100644 --- a/test/test-idna.c +++ b/test/test-idna.c @@ -20,7 +20,7 @@ */ #include "task.h" -#include "../src/idna.h" +#include "idna.h" #include TEST_IMPL(utf8_decode1) { -- Gitee From e5b669d207bf7eee7f7b8534cb6cd3fddcb8c578 Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:09:49 +0000 Subject: [PATCH 3/6] update test/test-strtok.c. Signed-off-by: flying --- test/test-strtok.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-strtok.c b/test/test-strtok.c index 507e6db..24a9826 100644 --- a/test/test-strtok.c +++ b/test/test-strtok.c @@ -23,8 +23,8 @@ #include "task.h" #include -#include "../src/strtok.h" -#include "../src/strtok.c" +#include "strtok.h" +#include "strtok.c" struct strtok_test_case { const char* str; -- Gitee From 4f1eb185cabc28fc4c21ee15a2bc9f566f0a37a8 Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:10:35 +0000 Subject: [PATCH 4/6] update test/test-fs-fd-hash.c. Signed-off-by: flying --- test/test-fs-fd-hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-fs-fd-hash.c b/test/test-fs-fd-hash.c index 8b4bc03..8921ac3 100644 --- a/test/test-fs-fd-hash.c +++ b/test/test-fs-fd-hash.c @@ -24,7 +24,7 @@ #include "uv.h" #include "task.h" -#include "../src/win/fs-fd-hash-inl.h" +#include "fs-fd-hash-inl.h" #define HASH_MAX 1000000000 -- Gitee From 35a3243804aa14bb3b75d373550b07b0f6b05a79 Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:11:20 +0000 Subject: [PATCH 5/6] update test/test-strscpy.c. Signed-off-by: flying --- test/test-strscpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-strscpy.c b/test/test-strscpy.c index 993f7a1..146e463 100644 --- a/test/test-strscpy.c +++ b/test/test-strscpy.c @@ -23,7 +23,7 @@ #include "task.h" #include -#include "../src/strscpy.h" +#include "strscpy.h" TEST_IMPL(strscpy) { char d[4]; -- Gitee From cc394f8e0f383ebb21cd9606aa6cdb48b6f53cac Mon Sep 17 00:00:00 2001 From: flying Date: Sat, 27 Jan 2024 02:11:47 +0000 Subject: [PATCH 6/6] update src/win/internal.h. Signed-off-by: flying --- src/win/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/internal.h b/src/win/internal.h index c02db84..e5626cd 100644 --- a/src/win/internal.h +++ b/src/win/internal.h @@ -23,7 +23,7 @@ #define UV_WIN_INTERNAL_H_ #include "uv.h" -#include "../uv-common.h" +#include "uv-common.h" #include "uv/tree.h" #include "winapi.h" -- Gitee