e8f3bd71d8
Meson warns if xgettext is not found. In the future we may want to add a required argument to i18n.gettext(); in the meanwhile, I am adding a --enable-gettext/--disable-gettext option and feature detection in configure. This preserves QEMU's default behavior of detecting system features, without any warning, if neither --enable-* nor --disable-* is requested. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
8 lines
361 B
Meson
8 lines
361 B
Meson
option('gettext', type : 'boolean', value : true)
|
|
option('sdl', type : 'feature', value : 'auto')
|
|
option('sdl_image', type : 'feature', value : 'auto')
|
|
option('vnc', type : 'feature', value : 'enabled')
|
|
option('vnc_jpeg', type : 'feature', value : 'auto')
|
|
option('vnc_png', type : 'feature', value : 'auto')
|
|
option('vnc_sasl', type : 'feature', value : 'auto')
|