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 (-1 / +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-825 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
target_kvm="no"
824
if expr $target : '.*-kvm' > /dev/null ; then
825
  target_kvm="yes"
826
  target_softmmu="yes"
827
fi
823
828
824
target_linux_user="no"
829
target_linux_user="no"
825
if expr $target : '.*-linux-user' > /dev/null ; then
830
if expr $target : '.*-linux-user' > /dev/null ; then
Lines 943-948 Link Here
943
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
948
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
944
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
949
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
945
fi
950
fi
951
if test "$target_kvm" = "yes" ; then
952
  echo "CONFIG_KVM=yes" >> $config_mak
953
  echo "#define CONFIG_KVM 1" >> $config_h
954
fi
946
if test "$target_user_only" = "yes" ; then
955
if test "$target_user_only" = "yes" ; then
947
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
956
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
948
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
957
  echo "#define CONFIG_USER_ONLY 1" >> $config_h

Return to bug 157987