diff options
| author | Justin Clift | 2011-02-18 19:25:43 +1100 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-02-19 09:30:59 -0800 | 
| commit | 798944171e9dd9a0a10bd2a50ffaecef7ba9e0cc (patch) | |
| tree | 35bd2621ad44040c4cd677130f519a8305fd67c6 /Library/Formula/libvirt.rb | |
| parent | 672c33527d655b8b6816132ffedd2433126fc0f0 (diff) | |
| download | homebrew-798944171e9dd9a0a10bd2a50ffaecef7ba9e0cc.tar.bz2 | |
Update formula: libvirt
Now explicitly lists compilation options in use, and also now depends
upon YAJL 1.0.11.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libvirt.rb')
| -rw-r--r-- | Library/Formula/libvirt.rb | 11 | 
1 files changed, 10 insertions, 1 deletions
diff --git a/Library/Formula/libvirt.rb b/Library/Formula/libvirt.rb index 2d3343c6d..d2d06467a 100644 --- a/Library/Formula/libvirt.rb +++ b/Library/Formula/libvirt.rb @@ -11,6 +11,7 @@ class Libvirt <Formula    sha256 '030aea3728917053555bec98d93d2855e8a603b758c0b2a5d57ac48b4f39e113'    depends_on "gnutls" +  depends_on "yajl"    if MACOS_VERSION < 10.6      # Definitely needed on Leopard, but definitely not Snow Leopard. @@ -30,7 +31,15 @@ class Libvirt <Formula      args = ["--prefix=#{prefix}",              "--localstatedir=#{var}",              "--mandir=#{man}", -            "--sysconfdir=#{etc}"] +            "--sysconfdir=#{etc}", +            "--with-esx", +            "--with-init-script=none", +            "--with-openvz", +            "--with-remote", +            "--with-test", +            "--with-vbox=check", +            "--with-vmware", +            "--with-yajl"]      args << "--without-libvirtd" if ARGV.include? '--without-libvirtd'  | 
