mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
meson: add 'nls' option to disable translations
And enable by default. Was implicitly disabled because ENABLE_NLS was not defined. Also use .set_quoted().
This commit is contained in:
parent
ac90718ffc
commit
906b37de60
2 changed files with 11 additions and 5 deletions
14
meson.build
14
meson.build
|
@ -114,10 +114,14 @@ cdata.set('SIZEOF_LONG', cc.sizeof('long'))
|
||||||
cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
|
cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
|
||||||
cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
|
cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
|
||||||
|
|
||||||
cdata.set('VERSION', '"@0@"'.format(gst_version))
|
cdata.set_quoted('VERSION', gst_version)
|
||||||
cdata.set('PACKAGE', '"gst-plugins-ugly"')
|
cdata.set_quoted('PACKAGE', 'gst-plugins-ugly')
|
||||||
cdata.set('GETTEXT_PACKAGE', '"gst-plugins-ugly-1.0"')
|
cdata.set_quoted('GST_LICENSE', 'LGPL')
|
||||||
cdata.set('GST_LICENSE', '"LGPL"')
|
cdata.set_quoted('GETTEXT_PACKAGE', 'gst-plugins-ugly-1.0')
|
||||||
|
cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
|
||||||
|
if get_option('nls')
|
||||||
|
cdata.set('ENABLE_NLS', 1)
|
||||||
|
endif
|
||||||
|
|
||||||
# GStreamer package name and origin url
|
# GStreamer package name and origin url
|
||||||
gst_package_name = get_option('package-name')
|
gst_package_name = get_option('package-name')
|
||||||
|
@ -248,7 +252,7 @@ subdir('ext')
|
||||||
subdir('tests')
|
subdir('tests')
|
||||||
|
|
||||||
# xgettext is optional (on Windows for instance)
|
# 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')
|
subdir('po')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@ option('x264_libraries', type : 'string', value : '',
|
||||||
description : 'Colon separated list of additional x264 library paths, e.g. for 10-bit version')
|
description : 'Colon separated list of additional x264 library paths, e.g. for 10-bit version')
|
||||||
|
|
||||||
# Common options
|
# Common options
|
||||||
|
option('nls', type : 'boolean', value : true, yield: true,
|
||||||
|
description : 'Enable native language support (translations)')
|
||||||
option('package-name', type : 'string', yield : true,
|
option('package-name', type : 'string', yield : true,
|
||||||
description : 'package name to use in plugins')
|
description : 'package name to use in plugins')
|
||||||
option('package-origin', type : 'string', value : 'Unknown package origin', yield: true,
|
option('package-origin', type : 'string', value : 'Unknown package origin', yield: true,
|
||||||
|
|
Loading…
Reference in a new issue