]> xenbits.xensource.com Git - libvirt.git/commitdiff
MacOS: Re-add support for QEMU backend
authorDoug Goldstein <cardoe@cardoe.com>
Mon, 28 Oct 2013 18:20:35 +0000 (13:20 -0500)
committerDoug Goldstein <cardoe@cardoe.com>
Wed, 30 Oct 2013 04:35:06 +0000 (23:35 -0500)
The QEMU backend was disabled on Mac OS X without a reason in the code
and due to refactors its difficult to understand when/why it was
disabled. With QEMU being supported on Mac OS X there is no reason to
disable QEMU on this platform.

configure.ac

index 1c5b168d006e045eb01e658f61484ae0bb210fc2..f519cbe0565772dafd2f2419f80153214794d327 100644 (file)
@@ -191,10 +191,6 @@ if test $with_freebsd = yes; then
    with_firewalld=no
 fi
 
-if test $with_osx = yes; then
-   with_qemu=no
-fi
-
 AM_CONDITIONAL([WITH_LINUX], [test "$with_linux" = "yes"])
 AM_CONDITIONAL([WITH_FREEBSD], [test "$with_freebsd" = "yes"])
 
@@ -2393,7 +2389,7 @@ fi
 AM_CONDITIONAL([WITH_INTERFACE], [test "$with_interface" = "yes"])
 
 
-if test $with_freebsd = yes; then
+if test $with_freebsd = yes || test $with_osx = yes; then
   default_qemu_user=root
   default_qemu_group=wheel
 else