meson: add 'nls' option to disable translations
authorTim-Philipp Müller <tim@centricular.com>
Mon, 21 May 2018 10:46:59 +0000 (11:46 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Mon, 21 May 2018 10:46:59 +0000 (11:46 +0100)
And enable by default. Was implicitly disabled because
ENABLE_NLS was not defined.

meson.build
meson_options.txt

index 50c399e..544941d 100644 (file)
@@ -148,6 +148,10 @@ cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
 cdata.set('GST_LICENSE', '"LGPL"')
 cdata.set('PACKAGE', '"gst-plugins-good"')
 cdata.set('GETTEXT_PACKAGE', '"gst-plugins-good-1.0"')
+cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
+if get_option('nls')
+  cdata.set('ENABLE_NLS', 1)
+endif
 
 warning_flags = [
   '-Wmissing-declarations',
@@ -371,7 +375,7 @@ subdir('tests')
 subdir('pkgconfig')
 
 # xgettext is optional (on Windows for instance)
-if find_program('xgettext', required : false).found()
+if get_option('nls') and find_program('xgettext', required : false).found()
   subdir('po')
 endif
 
index af0f53e..a7266e8 100644 (file)
@@ -5,6 +5,8 @@ option('libv4l2', type : 'boolean', value : true,
        description : 'Use libv4l2 for some obscure format conversions')
 
 # Common options
+option('nls', type : 'boolean', value : true, yield: true,
+        description : 'Enable native language support (translations)')
 option('orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
 option('package-name', type : 'string', yield : true,
        description : 'package name to use in plugins')