aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 2be21282..e3d8cc2a 100644
--- a/meson.build
+++ b/meson.build
@@ -211,7 +211,9 @@ endif
libdl = dependency('dl')
-if not get_option('i18n').disabled()
+if get_option('i18n').disabled()
+ libintl = null_dep
+else
libintl = dependency('intl', required: get_option('i18n'))
if libintl.found()
cdata.set('ENABLE_NLS', 1)