Update to 1.0.6. See

http://www.wireshark.org/docs/relnotes/wireshark-1.0.6.html for a list of
changes.
This commit is contained in:
Joe Marcus Clarke 2009-02-12 06:09:22 +00:00
parent 27e3da46ae
commit 3f6dd56817
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228100
3 changed files with 4 additions and 16 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME?= wireshark
PORTVERSION= 1.0.5
PORTVERSION= 1.0.6
PORTREVISION?= 0
CATEGORIES= net ipv6
MASTER_SITES= http://www.wireshark.org/download/src/ \

View File

@ -1,3 +1,3 @@
MD5 (wireshark-1.0.5.tar.bz2) = 4c6a93e00123d8bb7af48a009519aca4
SHA256 (wireshark-1.0.5.tar.bz2) = 4f923e24d674ac62ded3da402a4de6d402886d80e3d7cac91cf026921f32fcf7
SIZE (wireshark-1.0.5.tar.bz2) = 13144320
MD5 (wireshark-1.0.6.tar.bz2) = f97041ec73e72fc36e39be2588045578
SHA256 (wireshark-1.0.6.tar.bz2) = 7b4adacd86ba9f1c6a3a0dc74303d03635cd361c23c312ff9698e0c2a44b9f0d
SIZE (wireshark-1.0.6.tar.bz2) = 13161721

View File

@ -1,12 +0,0 @@
--- epan/to_str.c.orig 2008-12-17 00:32:48.000000000 -0500
+++ epan/to_str.c 2008-12-16 21:00:31.000000000 -0500
@@ -368,6 +368,9 @@ time_secs_to_str_buf(gint32 time, guint3
const gchar *msign = "";
gboolean do_comma = FALSE;
+#ifndef G_MININT32
+#define G_MININT32 G_MININT
+#endif
if(time == G_MININT32) { /* That Which Shall Not Be Negated */
g_snprintf(buf, buf_len, "Unable to cope with time value %d", time);
return;