aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLars2010-03-01 09:11:57 -0800
committerAdam Vandenberg2010-03-01 09:32:10 -0800
commit2d0a7fb9e2e8569fcb8a161d373387e461cf0ad9 (patch)
treeae186d4f43b7edf5047a6a135b450ca3b56781ce /Library/Formula
parent614e5c02be9667be934effa4aa1641db17f1fe4d (diff)
downloadhomebrew-2d0a7fb9e2e8569fcb8a161d373387e461cf0ad9.tar.bz2
Updated formula. Enable IPv6 and SSL.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lynx.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/lynx.rb b/Library/Formula/lynx.rb
index ed3611a56..d04f69deb 100644
--- a/Library/Formula/lynx.rb
+++ b/Library/Formula/lynx.rb
@@ -6,13 +6,14 @@ class Lynx <Formula
md5 '493af4c77ef6761e3f0157cd1be033a0'
def install
- system "./configure", "--silent",
- "--prefix=#{prefix}",
+ system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--disable-echo",
"--with-zlib",
- "--with-bzlib"
+ "--with-bzlib",
+ "--with-ssl",
+ "--enable-ipv6"
system "make install"
end
end