From ce66690b841bdecec9ff889b74925af00cb84af2 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 27 Apr 2010 08:32:57 -0700 Subject: [PATCH] Update wireshark to 1.2.7. --- Formula/wireshark.rb | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Formula/wireshark.rb b/Formula/wireshark.rb index 5526edc3a9a..e01cb111b10 100644 --- a/Formula/wireshark.rb +++ b/Formula/wireshark.rb @@ -1,17 +1,20 @@ require 'formula' class Wireshark :optional + depends_on 'pcre' => :optional depends_on 'glib' def install - system "./configure", "--disable-debug", - "--prefix=#{prefix}", + system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--disable-wireshark" # actually just disables the GTK GUI + system "make" + ENV.j1 # Install failed otherwise. system "make install" end