diff options
| author | Adam Vandenberg | 2013-02-10 08:06:20 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-02-10 08:06:37 -0800 | 
| commit | 896e1ff7626cb72cc83f6d6368a3cfb94886c016 (patch) | |
| tree | b9a31edf67aa694ed3c3aa18b175b47365bb2af5 /Library/Formula/libvirt.rb | |
| parent | 190ddc8366373009f2d1367474e3c6b3b1a54514 (diff) | |
| download | homebrew-896e1ff7626cb72cc83f6d6368a3cfb94886c016.tar.bz2 | |
libvirt uses pkg-config
Closes #17739.
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 eaa68ee07..052263feb 100644 --- a/Library/Formula/libvirt.rb +++ b/Library/Formula/libvirt.rb @@ -7,9 +7,10 @@ class Libvirt < Formula    option 'without-libvirtd', 'Build only the virsh client and development libraries' -  depends_on "gnutls" +  depends_on 'pkg-config' => :build +  depends_on 'gnutls'    depends_on 'libgcrypt' -  depends_on "yajl" +  depends_on 'yajl'    if MacOS.version == :leopard      # Definitely needed on Leopard, but not on Snow Leopard.  | 
