Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 157987 | Differences between
and this patch

Collapse All | Expand All

(-)qemu/configure.orig (-2 / +10 lines)
Lines 584-590 Link Here
584
    prefix="/usr/local"
584
    prefix="/usr/local"
585
fi
585
fi
586
mandir="$prefix/share/man"
586
mandir="$prefix/share/man"
587
datadir="$prefix/share/qemu"
587
datadir="$prefix/share/kvm"
588
docdir="$prefix/share/doc/qemu"
588
docdir="$prefix/share/doc/qemu"
589
bindir="$prefix/bin"
589
bindir="$prefix/bin"
590
fi
590
fi
Lines 820-826 Link Here
820
if expr $target : '.*-user' > /dev/null ; then
820
if expr $target : '.*-user' > /dev/null ; then
821
  target_user_only="yes"
821
  target_user_only="yes"
822
fi
822
fi
823
823
target_kvm="no"
824
if expr $target : '.*-kvm' > /dev/null ; then
825
  target_kvm="yes"
826
  target_softmmu="yes"
827
fi
824
target_linux_user="no"
828
target_linux_user="no"
825
if expr $target : '.*-linux-user' > /dev/null ; then
829
if expr $target : '.*-linux-user' > /dev/null ; then
826
  target_linux_user="yes"
830
  target_linux_user="yes"
Lines 943-948 Link Here
943
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
947
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
944
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
948
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
945
fi
949
fi
950
if test "$target_kvm" = "yes" ; then
951
  echo "CONFIG_KVM=yes" >> $config_mak
952
  echo "#define CONFIG_KVM 1" >> $config_h
953
fi
946
if test "$target_user_only" = "yes" ; then
954
if test "$target_user_only" = "yes" ; then
947
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
955
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
948
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
956
  echo "#define CONFIG_USER_ONLY 1" >> $config_h

Return to bug 157987