diff options
| author | Doug Woos | 2010-08-21 03:28:16 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-21 09:19:36 -0700 |
| commit | 2bb385c3e0751ec54f6c11f92105b3db1cca732e (patch) | |
| tree | ed8dff63dff0517f0e64ae20da025c76281c2d9a /Library | |
| parent | 9f1d66fb71c3785956acbe39cdacc2eedc0312be (diff) | |
| download | homebrew-2bb385c3e0751ec54f6c11f92105b3db1cca732e.tar.bz2 | |
Added --disable-mono to gmime configuration
Without --disable-mono, ./configure errors out trying to find
gtk-sharp. So either mono needs to be a dependency or the mono
bindings need to be disabled. Note that Macports disables the
bindings.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gmime.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/gmime.rb b/Library/Formula/gmime.rb index 8f70aace5..c4d2b13f8 100644 --- a/Library/Formula/gmime.rb +++ b/Library/Formula/gmime.rb @@ -10,7 +10,8 @@ class Gmime <Formula def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--enable-largefile" + "--enable-largefile", + "--disable-mono" system "make install" end end |
