wireshark: disable experimental python support
Currently building wireshark with Python support (the default) may result in runtime errors like dlsym(0x8fe467fc, py_create_dissector_handle): symbol not found Since Python support is currently "experimental", let's just turn it off. Patches with the right settings to re-enable it are certainly welcome. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
f4b526e6cf
commit
b58404ff56
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,10 @@ class Wireshark < Formula
|
|||
def install
|
||||
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
|
||||
|
||||
# don't build python bindings, results in runtime errors
|
||||
# e.g. "dlsym(0x8fe467fc, py_create_dissector_handle): symbol not found"
|
||||
args << "--without-python"
|
||||
|
||||
# actually just disables the GTK GUI
|
||||
args << "--disable-wireshark" if not ARGV.include? "--with-x"
|
||||
|
||||
|
|
Loading…
Reference in a new issue