aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorhebiyan2014-04-08 13:58:15 +0900
committerAdam Vandenberg2014-04-08 07:36:35 -0700
commiteb60a80bb8026592338b6b6ef274eee9a62bacd7 (patch)
treeb5aa1c792f679e0d92c0fe03d477dab9156d5683 /Library
parentddd0776c4ed494abe6ad738b09280773c26ed837 (diff)
downloadhomebrew-eb60a80bb8026592338b6b6ef274eee9a62bacd7.tar.bz2
ecl: use brewed gmp
Fixes #27929 Closes #28238 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ecl.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Formula/ecl.rb b/Library/Formula/ecl.rb
index d04f56ad8..c644f0c3a 100644
--- a/Library/Formula/ecl.rb
+++ b/Library/Formula/ecl.rb
@@ -5,14 +5,11 @@ class Ecl < Formula
url 'https://downloads.sourceforge.net/project/ecls/ecls/13.5/ecl-13.5.1.tgz'
sha1 'db7f732e5e12182118f00c02d8d2531f6d6aefb2'
- fails_with :clang do
- build 425
- cause "The built-in gmp library fails to build with clang"
- end
+ depends_on 'gmp'
def install
ENV.deparallelize
- system "./configure", "--prefix=#{prefix}", "--enable-unicode"
+ system "./configure", "--prefix=#{prefix}", "--enable-unicode=yes", "--enable-threads=yes", "--with-system-gmp=yes"
system "make"
system "make install"
end