2021-11-30 04:31:32 +08:00
|
|
|
diff --git a/meson.build b/meson.build
|
2022-10-14 02:20:24 +08:00
|
|
|
index f44fa2d4e..d465253af 100644
|
2021-11-30 04:31:32 +08:00
|
|
|
--- a/meson.build
|
|
|
|
+++ b/meson.build
|
2023-02-16 02:00:35 +08:00
|
|
|
@@ -2088,9 +2088,9 @@
|
2022-10-14 02:20:24 +08:00
|
|
|
# proxy-libintl subproject.
|
2021-11-30 04:31:32 +08:00
|
|
|
# FIXME: glib-gettext.m4 has much more checks to detect broken/uncompatible
|
|
|
|
# implementations. This could be extended if issues are found in some platforms.
|
2022-10-14 02:20:24 +08:00
|
|
|
-libintl_deps = []
|
2023-02-16 02:00:35 +08:00
|
|
|
-libintl = dependency('intl', required: false, allow_fallback: false)
|
2022-10-14 02:20:24 +08:00
|
|
|
-if libintl.found()
|
2023-02-16 02:00:35 +08:00
|
|
|
+libintl = dependency('Intl', method:'cmake', required: true)
|
2022-10-14 02:20:24 +08:00
|
|
|
+libintl_deps = [libintl]
|
2022-11-01 07:05:59 +08:00
|
|
|
+if false
|
|
|
|
# libintl supports different threading APIs, which may not
|
|
|
|
# require additional flags, but it defaults to using pthreads if
|
|
|
|
# found. Meson's "threads" dependency does not allow you to
|