diff options
| author | Gerald Combs | 2014-11-12 11:37:32 -0800 |
|---|---|---|
| committer | Jack Nagel | 2014-11-14 20:24:44 -0600 |
| commit | b5177ede3389fa8358ccbf6983e02572acb7a053 (patch) | |
| tree | cfe7d9562a7a5cc051baebe5acc0e03ebe6f731b /Library | |
| parent | 3c4c5468217c870775ba72444268134b197084d7 (diff) | |
| download | homebrew-b5177ede3389fa8358ccbf6983e02572acb7a053.tar.bz2 | |
Wireshark: Update dependencies
Recommend c-ares. Otherwise name resolution is done synchronously, which is excruciatingly slow when your capture file contains a sufficient number of unique addresses.
Remove the PCRE dependency. We switched GRegex (glib's PCRE wrapper) a while back.
Closes #34133.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/wireshark.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/wireshark.rb b/Library/Formula/wireshark.rb index 1fd59191a..7f6e2c171 100644 --- a/Library/Formula/wireshark.rb +++ b/Library/Formula/wireshark.rb @@ -39,11 +39,10 @@ class Wireshark < Formula depends_on "libgcrypt" depends_on "geoip" => :recommended + depends_on "c-ares" => :recommended - depends_on "c-ares" => :optional depends_on "libsmi" => :optional depends_on "lua" => :optional - depends_on "pcre" => :optional depends_on "portaudio" => :optional depends_on "qt" => :optional depends_on "gtk+3" => :optional |
