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:
parent
4eda147f09
commit
79cbfac94e
1 changed files with 1 additions and 2 deletions
|
@ -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+")
|
||||
|
|
Loading…
Reference in a new issue