1 https://bugs.gentoo.org/912776
2 Adapted from https://src.fedoraproject.org/rpms/mozc/raw/aa3cba136c9a28e176d246f450465d3a8a4e8533/f/mozc-build-new-abseil.patch
3 --- a/src/base/init_mozc.cc
4 +++ b/src/base/init_mozc.cc
5 @@ -87,7 +87,10 @@ std::string GetLogFilePathFromProgramName(const std::string &program_name) {
6 void ParseCommandLineFlags(int argc, char **argv) {
7 absl::flags_internal::ParseCommandLineImpl(
9 + #if defined(ABSL_LTS_RELEASE_VERSION) && ABSL_LTS_RELEASE_VERSION < 20230802
10 + // Abseil 20230802.0 does not use ArgvListAction
11 absl::flags_internal::ArgvListAction::kRemoveParsedArgs,
13 // Suppress help messages invoked by --help and others.
14 // Use UsageFlagsAction::kHandleUsage to enable it.
15 absl::flags_internal::UsageFlagsAction::kIgnoreUsage,