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 Homebrew/homebrew#34133.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Gerald Combs 2014-11-12 17:43:32 -08:00 committed by Jack Nagel
parent 4eda147f09
commit 79cbfac94e

View file

@ -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+")