diff options
author | Juan Quintela | 2009-08-03 14:47:07 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-08-10 20:05:46 +0200 |
commit | 8e02e54cc44de66229da0d97698f57e38b69b315 (patch) | |
tree | 613a1646aa15ef46532134ce3cf1d4f477ff11fc /configure | |
parent | Add libs_tools support (diff) | |
download | qemu-8e02e54cc44de66229da0d97698f57e38b69b315.tar.gz qemu-8e02e54cc44de66229da0d97698f57e38b69b315.tar.xz qemu-8e02e54cc44de66229da0d97698f57e38b69b315.zip |
VDE libs are used both by tools and softmmu
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -962,6 +962,8 @@ int main(void) EOF if compile_prog "" "$vde_libs" ; then vde=yes + libs_softmmu="$vde_libs $libs_softmmu" + libs_tools="$vde_libs $libs_tools" fi fi @@ -1613,7 +1615,6 @@ if test "$slirp" = "yes" ; then fi if test "$vde" = "yes" ; then echo "CONFIG_VDE=y" >> $config_host_mak - echo "VDE_LIBS=$vde_libs" >> $config_host_mak fi for card in $audio_card_list; do def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'` |