diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2020-09-15 20:13:05 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2020-09-16 08:41:06 +0200 |
commit | e0d3d8015f858f4d8d2a846d5909f57b709bf2b5 (patch) | |
tree | e7b678618d3ffbfcec5f78a92ed5611fba27e6dc | |
parent | a84258e1f9702f1f6782bda06e97bf65632ccbb1 (diff) | |
download | qemu-e0d3d8015f858f4d8d2a846d5909f57b709bf2b5.zip qemu-e0d3d8015f858f4d8d2a846d5909f57b709bf2b5.tar.gz qemu-e0d3d8015f858f4d8d2a846d5909f57b709bf2b5.tar.bz2 |
meson: remove empty else and duplicated gio deps
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20200915121318.247-14-luoyonggang@gmail.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | meson.build | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meson.build b/meson.build index bba766b..f4d1ab1 100644 --- a/meson.build +++ b/meson.build @@ -317,7 +317,6 @@ opengl = not_found if 'CONFIG_OPENGL' in config_host opengl = declare_dependency(compile_args: config_host['OPENGL_CFLAGS'].split(), link_args: config_host['OPENGL_LIBS'].split()) -else endif gtk = not_found if 'CONFIG_GTK' in config_host @@ -344,11 +343,6 @@ if 'CONFIG_ICONV' in config_host iconv = declare_dependency(compile_args: config_host['ICONV_CFLAGS'].split(), link_args: config_host['ICONV_LIBS'].split()) endif -gio = not_found -if 'CONFIG_GIO' in config_host - gio = declare_dependency(compile_args: config_host['GIO_CFLAGS'].split(), - link_args: config_host['GIO_LIBS'].split()) -endif vnc = not_found png = not_found jpeg = not_found |