diff options
author | Marc-André Lureau | 2019-08-15 13:15:32 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-08-21 12:30:24 +0200 |
commit | 582ea95f5f9389677734637bdc021588c393bc3b (patch) | |
tree | 44905af3085a87e09b476a43fcecceb2e107bc1b /configure | |
parent | meson: convert qapi-specific to meson (diff) | |
download | qemu-582ea95f5f9389677734637bdc021588c393bc3b.tar.gz qemu-582ea95f5f9389677734637bdc021588c393bc3b.tar.xz qemu-582ea95f5f9389677734637bdc021588c393bc3b.zip |
meson: convert hw/xen
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2740,6 +2740,8 @@ if test "$xen" != "no" ; then fi QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)" libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu" + xen_cflags="$($pkg_config --cflags $xen_pc)" + xen_libs="$($pkg_config --libs $xen_pc)" else xen_libs="-lxenstore -lxenctrl -lxenguest" @@ -3020,9 +3022,8 @@ EOF if test "$xen" = yes; then if test $xen_ctrl_version -ge 40701 ; then - libs_softmmu="$xen_stable_libs $libs_softmmu" + xen_libs="$xen_libs $xen_stable_libs " fi - libs_softmmu="$xen_libs $libs_softmmu" fi fi fi @@ -7313,6 +7314,8 @@ fi if test "$xen" = "yes" ; then echo "CONFIG_XEN_BACKEND=y" >> $config_host_mak echo "CONFIG_XEN_CTRL_INTERFACE_VERSION=$xen_ctrl_version" >> $config_host_mak + echo "XEN_CFLAGS=$xen_cflags" >> $config_host_mak + echo "XEN_LIBS=$xen_libs" >> $config_host_mak fi if test "$linux_aio" = "yes" ; then echo "CONFIG_LINUX_AIO=y" >> $config_host_mak |