wireshark: additional dependencies
Wireshark without d-bus results in Wireshark demanding it and will crash on capture. There’s a bug report at seclists here: http://seclists.org/wireshark/2014/Apr/146 - That remains an issue with the latest release as well. Without d-bus, wireshark is not happy. Closes Homebrew/homebrew#34485. Signed-off-by: Tim D. Smith <git@tim-smith.us>
This commit is contained in:
parent
fce0520a8f
commit
2aaddf2827
1 changed files with 3 additions and 1 deletions
|
@ -36,13 +36,14 @@ class Wireshark < Formula
|
|||
option "with-gtk+3", "Build the wireshark command with gtk+3"
|
||||
option "with-gtk+", "Build the wireshark command with gtk+"
|
||||
option "with-qt", "Build the wireshark-qt command (can be used with or without either GTK option)"
|
||||
option "with-headers", "Install Wireshark library headers for plug-in developemnt"
|
||||
option "with-headers", "Install Wireshark library headers for plug-in development"
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
|
||||
depends_on "glib"
|
||||
depends_on "gnutls"
|
||||
depends_on "libgcrypt"
|
||||
depends_on "d-bus"
|
||||
|
||||
depends_on "geoip" => :recommended
|
||||
depends_on "c-ares" => :recommended
|
||||
|
@ -54,6 +55,7 @@ class Wireshark < Formula
|
|||
depends_on "gtk+3" => :optional
|
||||
depends_on "gtk+" => :optional
|
||||
depends_on "homebrew/dupes/libpcap" => :optional
|
||||
depends_on "gnome-icon-theme" if build.with? "gtk+3"
|
||||
|
||||
def install
|
||||
args = ["--disable-dependency-tracking",
|
||||
|
|
Loading…
Reference in a new issue