diff options
| author | gnu-user | 2011-08-03 22:46:03 -0400 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-08-10 10:58:13 -0700 | 
| commit | 051dabf4e56630c18fe15a7b639598dd5f40e852 (patch) | |
| tree | 84c2c76203ae65318d4c71be10dd7788d22e0d53 /Library/Formula/libvirt.rb | |
| parent | e0e2f6daa1ea197f3dff8ae7f88617e06bbd1759 (diff) | |
| download | homebrew-051dabf4e56630c18fe15a7b639598dd5f40e852.tar.bz2 | |
libvirt: support VirtualBox by default
- Enabled support for VirtualBox by default - Removed support for qemu,
since there is no OS X support, because according to libvirt
"./configure --help" qemu is installed by default with the argument
"--with-qemu=yes" unless otherwise specified
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libvirt.rb')
| -rw-r--r-- | Library/Formula/libvirt.rb | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/libvirt.rb b/Library/Formula/libvirt.rb index e649ac1b2..2e1ba0555 100644 --- a/Library/Formula/libvirt.rb +++ b/Library/Formula/libvirt.rb @@ -29,9 +29,10 @@ class Libvirt < Formula              "--with-init-script=none",              "--with-remote",              "--with-test", -            "--with-vbox=check", +            "--with-vbox",              "--with-vmware", -            "--with-yajl"] +            "--with-yajl", +            "--without-qemu"]      args << "--without-libvirtd" if ARGV.include? '--without-libvirtd'  | 
