Skip to content

Commit fe1d9c8

Browse files
authored
prepare f5m 0.2.8 !windows (#43)
1 parent ba9742f commit fe1d9c8

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
MOZC_SHA: 88b1dcae03a0a16192586dca3da157dad64f0e2f
10+
MOZC_SHA: ce1fb7fe48efb1d85f8e54eff1b05e9e692bf0d4
1111

1212
jobs:
1313
lint:

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
url = https://github.com/fcitx-contrib/m17n-cmake
8888
[submodule "marisa"]
8989
path = marisa
90-
url = https://github.com/rime/marisa-trie
90+
url = https://github.com/s-yata/marisa-trie
9191
[submodule "opencc"]
9292
path = opencc
9393
url = https://github.com/BYVoid/OpenCC

glib

Submodule glib updated 87 files

libmozc

marisa

Submodule marisa updated 173 files

opencc

patches/glib.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
diff --git a/meson.build b/meson.build
2-
index 6105f1523..cb8ac8dee 100644
2+
index acaf44759..b91c8c3d0 100644
33
--- a/meson.build
44
+++ b/meson.build
55
@@ -2303,47 +2303,10 @@ endif
66
# proxy-libintl subproject.
7-
# FIXME: glib-gettext.m4 has much more checks to detect broken/uncompatible
7+
# FIXME: glib-gettext.m4 has much more checks to detect broken/incompatible
88
# implementations. This could be extended if issues are found in some platforms.
99
-libintl_deps = []
1010
-libintl_prefix = '#include <libintl.h>'

patches/mozc.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
diff --git a/src/base/thread.h b/src/base/thread.h
2-
index 576192e..c2fb739 100644
2+
index db12511..2b35406 100644
33
--- a/src/base/thread.h
44
+++ b/src/base/thread.h
55
@@ -59,7 +59,14 @@ class Thread {
66

77
template <class Function, class... Args>
8-
explicit Thread(Function &&f, Args &&...args)
8+
explicit Thread(Function&& f, Args&&... args)
99
- : thread_(std::forward<Function>(f), std::forward<Args>(args)...) {}
1010
+#ifndef __EMSCRIPTEN__
1111
+ : thread_(std::forward<Function>(f), std::forward<Args>(args)...)

pcre2

Submodule pcre2 updated 116 files

0 commit comments

Comments
 (0)