aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gecode.rb
diff options
context:
space:
mode:
authornibbles 2bits2012-04-01 14:31:55 -0700
committerJack Nagel2012-04-02 18:50:57 -0500
commitdd395873721c7e119a2de9359186c5a7d07b654f (patch)
treeac8057b12444f8d8e373306a6b58bc45fdc6ebff /Library/Formula/gecode.rb
parent6170a60992173ebb16185d21feb3b0154f6220ac (diff)
downloadhomebrew-dd395873721c7e119a2de9359186c5a7d07b654f.tar.bz2
gecode: remove fails_with, disable examples
Gecode was updated to 3.7.2 in 672c5ab20b77 which fixed the error with clang. Geocode passes make check. * Remove fails_with block. * Remove unrecognized configure option for dependency-tracking * Remove --disable-debug option. It is the defualt. * Add --disable-examples option. This stops two dozen example binaries from filling /usr/local/bin that have common names like golf, sudoku, grocery, and partition. Closes #11374. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/gecode.rb')
-rw-r--r--Library/Formula/gecode.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/Library/Formula/gecode.rb b/Library/Formula/gecode.rb
index e42880957..2e4403c83 100644
--- a/Library/Formula/gecode.rb
+++ b/Library/Formula/gecode.rb
@@ -5,14 +5,8 @@ class Gecode < Formula
homepage 'http://www.gecode.org/'
md5 '8d505801f5730bd1b639fb2213b24919'
- fails_with :clang do
- build 318
- cause "error: reference to non-static member function must be called"
- end
-
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--disable-examples"
system "make install"
end
end