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

Return to bug 157987