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:
Jack Nagel 2011-12-02 17:16:03 -06:00
parent f4b526e6cf
commit b58404ff56

View file

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