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
|
2022-11-01 07:05:59 +08:00
|
|
|
@@ -2090,9 +2090,9 @@ libz_dep = dependency('zlib')
|
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 = []
|
|
|
|
-libintl = dependency('intl', required: false)
|
|
|
|
-if libintl.found()
|
2022-07-23 01:54:34 +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
|