aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGerald Combs2014-11-12 17:43:32 -0800
committerJack Nagel2014-11-14 20:24:44 -0600
commitfe94fdc4a4847ad0fcc5ac29076bb980265ffc0b (patch)
tree147d50dd2c459062dbfc5d1477ed900c7ac3752c /Library/Formula
parentb5177ede3389fa8358ccbf6983e02572acb7a053 (diff)
downloadhomebrew-fe94fdc4a4847ad0fcc5ac29076bb980265ffc0b.tar.bz2
Wireshark: remove --with-ssl
I'm pretty sure --with-ssl (which triggers linking against libcrypto) can be removed. As I recall it's a leftover from the days when we used Net-SNMP. Most of our decryption support is handled by gcrypt and GNUTLS. Closes #34133. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wireshark.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb
index 7f6e2c171..23ffb4acd 100644
--- a/Library/Formula/wireshark.rb
+++ b/Library/Formula/wireshark.rb
@@ -51,8 +51,7 @@ class Wireshark < Formula
def install
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--with-gnutls",
- "--with-ssl"]
+ "--with-gnutls"]
args << "--disable-wireshark" if build.without?("gtk+3") && build.without?("qt") && build.without?("gtk+")
args << "--disable-gtktest" if build.without?("gtk+3") && build.without?("gtk+")