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>
This commit is contained in:
Doug Woos 2010-08-21 03:28:16 -04:00 committed by Adam Vandenberg
parent cb620f2192
commit 55855f97ac

View file

@ -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