aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/c-ares.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/c-ares.rb b/Library/Formula/c-ares.rb
index eecbfb4c4..1c1fc3038 100644
--- a/Library/Formula/c-ares.rb
+++ b/Library/Formula/c-ares.rb
@@ -1,12 +1,14 @@
require 'formula'
class CAres < Formula
- url 'http://c-ares.haxx.se/download/c-ares-1.7.5.tar.gz'
homepage 'http://c-ares.haxx.se/'
- md5 '800875fc23cd8e1924d8af9172ed33e7'
+ url 'http://c-ares.haxx.se/download/c-ares-1.8.0.tar.gz'
+ sha1 'be886ef6a4238b237d865342477df751cab9757d'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}",
+ '--disable-dependency-tracking',
+ '--disable-debug'
system "make install"
end
end