Commit dff840348ecde00e196dca1c87d5d365b7e3c985
Committed by
Anthony Liguori
1 parent
4ab312f7
kvm: Restrict configure check to Linux
There is no point in trying to find KVM on anything else than Linux, at least for the moment. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Showing
1 changed file
with
2 additions
and
2 deletions
configure
| ... | ... | @@ -190,7 +190,7 @@ io_thread="no" |
| 190 | 190 | nptl="yes" |
| 191 | 191 | mixemu="no" |
| 192 | 192 | bluez="yes" |
| 193 | -kvm="yes" | |
| 193 | +kvm="no" | |
| 194 | 194 | kerneldir="" |
| 195 | 195 | aix="no" |
| 196 | 196 | blobs="yes" |
| ... | ... | @@ -290,7 +290,6 @@ SunOS) |
| 290 | 290 | make="gmake" |
| 291 | 291 | install="ginstall" |
| 292 | 292 | needs_libsunmath="no" |
| 293 | - kvm="no" | |
| 294 | 293 | solarisrev=`uname -r | cut -f2 -d.` |
| 295 | 294 | # have to select again, because `uname -m` returns i86pc |
| 296 | 295 | # even on an x86_64 box. |
| ... | ... | @@ -330,6 +329,7 @@ audio_possible_drivers="oss alsa sdl esd pa" |
| 330 | 329 | linux="yes" |
| 331 | 330 | linux_user="yes" |
| 332 | 331 | usb="linux" |
| 332 | +kvm="yes" | |
| 333 | 333 | if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then |
| 334 | 334 | kqemu="yes" |
| 335 | 335 | audio_possible_drivers="$audio_possible_drivers fmod" | ... | ... |