diff options
author | Peter Volkov <pva@gentoo.org> | 2008-03-17 01:19:23 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-03-17 01:19:23 +0000 |
commit | b909c62e8a7779c9b9e59ae6ae19dbecf081329f (patch) | |
tree | 91f60646b6a83f1c1b7be79e75d40bd4ff681394 /net-analyzer | |
parent | New major version for GNOME 2.22 - adds darwin backend and a few improvements... (diff) | |
download | gentoo-2-b909c62e8a7779c9b9e59ae6ae19dbecf081329f.tar.gz gentoo-2-b909c62e8a7779c9b9e59ae6ae19dbecf081329f.tar.bz2 gentoo-2-b909c62e8a7779c9b9e59ae6ae19dbecf081329f.zip |
Missed patch added, thank steev for IRC notification.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/wireshark/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/wireshark/files/wireshark-0.99.8-libpcap-compile.patch | 34 |
2 files changed, 39 insertions, 1 deletions
diff --git a/net-analyzer/wireshark/ChangeLog b/net-analyzer/wireshark/ChangeLog index e1abd4c0872c..e2d5cd992fd0 100644 --- a/net-analyzer/wireshark/ChangeLog +++ b/net-analyzer/wireshark/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/wireshark # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.80 2008/03/16 20:00:09 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.81 2008/03/17 01:19:22 pva Exp $ + + 17 Mar 2008; Peter Volkov <pva@gentoo.org> + +files/wireshark-0.99.8-libpcap-compile.patch: + Missed patch added, thank steev for IRC notification. *wireshark-0.99.8 (16 Mar 2008) diff --git a/net-analyzer/wireshark/files/wireshark-0.99.8-libpcap-compile.patch b/net-analyzer/wireshark/files/wireshark-0.99.8-libpcap-compile.patch new file mode 100644 index 000000000000..287b36f040e7 --- /dev/null +++ b/net-analyzer/wireshark/files/wireshark-0.99.8-libpcap-compile.patch @@ -0,0 +1,34 @@ +Index: gtk/packet_list.c +=================================================================== +--- gtk/packet_list.c (revision 24415) ++++ gtk/packet_list.c (revision 24416) +@@ -790,11 +790,11 @@ + if (adj->value >= adj->upper - adj->page_size) { + at_end = TRUE; + } +- ++#ifdef HAVE_LIBPCAP + if (adj->value > 0 && at_end != last_at_end && at_end != auto_scroll_live) { + menu_auto_scroll_live_changed(at_end); + } +- ++#endif + last_at_end = at_end; + return at_end; + } +Index: gtk/main.c +=================================================================== +--- gtk/main.c (revision 24415) ++++ gtk/main.c (revision 24416) +@@ -3048,9 +3048,10 @@ + packet_list_set_column_titles(); + + menu_recent_read_finished(); ++#ifdef HAVE_LIBPCAP + menu_auto_scroll_live_changed(auto_scroll_live); ++#endif + +- + switch (user_font_apply()) { + case FA_SUCCESS: + break; |