aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2011-09-11 00:29:23 -0500
committerJack Nagel2011-09-11 00:29:23 -0500
commite8f52187fed2d872098b9b2ff61c1f4df0adb0f5 (patch)
treee106482c5a162aa50a2e76117cd5a97c1b6fb72a /Library/Formula
parent53686ea04c4cbc6d563010dd2c38bbc0f20b925a (diff)
downloadhomebrew-e8f52187fed2d872098b9b2ff61c1f4df0adb0f5.tar.bz2
libmicrohttpd 0.9.13
Also remove an unused configure flag. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libmicrohttpd.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/libmicrohttpd.rb b/Library/Formula/libmicrohttpd.rb
index 12284f78d..8232165b9 100644
--- a/Library/Formula/libmicrohttpd.rb
+++ b/Library/Formula/libmicrohttpd.rb
@@ -1,12 +1,12 @@
require 'formula'
class Libmicrohttpd < Formula
- url 'ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.4.4.tar.gz'
+ url 'ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.13.tar.gz'
homepage 'http://www.gnu.org/software/libmicrohttpd/'
- md5 'bcd61ebb10286379f55c7db9c79e0465'
+ md5 'f826b70228cb0987c56515436a8e0fd7'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end