diff options
| author | Adam Vandenberg | 2013-01-02 10:41:04 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-02 10:41:13 -0800 |
| commit | 649e0fe02443a9b36b187d783e285c43dbbe2ada (patch) | |
| tree | 941ae1cb0296c2e12a62feb8789666dd3038e1f6 /Library/Formula/groonga.rb | |
| parent | b07985b44b180a97cd383a116aea0c5d8ccd6e0f (diff) | |
| download | homebrew-649e0fe02443a9b36b187d783e285c43dbbe2ada.tar.bz2 | |
groonga: don't auto-detect zeromq
Closes #16820.
Diffstat (limited to 'Library/Formula/groonga.rb')
| -rw-r--r-- | Library/Formula/groonga.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/groonga.rb b/Library/Formula/groonga.rb index 342cf1301..a4dce2c0a 100644 --- a/Library/Formula/groonga.rb +++ b/Library/Formula/groonga.rb @@ -10,7 +10,8 @@ class Groonga < Formula depends_on 'msgpack' def install - system "./configure", "--prefix=#{prefix}", "--with-zlib" + # ZeroMQ is an optional dependency that will be auto-detected unless we disbale it + system "./configure", "--prefix=#{prefix}", "--with-zlib", "--disable-zeromq" system "make install" end end |
