Wireshark-bugs: [Wireshark-bugs] [Bug 9706] New: Fix trunk for FreeBSD 10.0

Date: Wed, 29 Jan 2014 01:19:59 +0000
Bug ID 9706
Summary Fix trunk for FreeBSD 10.0
Classification Unclassified
Product Wireshark
Version SVN
Hardware x86
OS Windows 7
Status UNCONFIRMED
Severity Major
Priority Low
Component Wireshark
Assignee [email protected]
Reporter [email protected]

Build Information:
TShark 1.11.3 (SVNRev 54990 from /trunk)

Copyright 1998-2014 Gerald Combs <[email protected]> and contributors.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Compiled (32-bit) with GLib 2.36.3, with libpcap, with libz 1.2.8, without
POSIX
capabilities, with SMI 0.4.8, without c-ares, with ADNS, without Lua, without
Python, with GnuTLS 2.12.23, with Gcrypt 1.5.3, with Heimdal Kerberos, with
GeoIP.

Running on FreeBSD 10.0-RELEASE, without locale, with libpcap version 1.4.0,
with libz 1.2.8.

Built using clang 4.2.1 Compatible FreeBSD Clang 3.3 (tags/RELEASE_33/final
183502).

--
Following two patches required to make it build on FreeBSD 10.0:

[~/wireshark-trunk] edwin@t43>svn diff
Index: tools/runlex.sh
===================================================================
--- tools/runlex.sh     (revision 54990)
+++ tools/runlex.sh     (working copy)
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/bin/sh

 #
 # runlex.sh
Index: wiretap/ascend.y
===================================================================
--- wiretap/ascend.y    (revision 54990)
+++ wiretap/ascend.y    (working copy)
@@ -148,7 +148,8 @@
 const gchar *ascend_parse_error;

 static unsigned int bcur;
-static guint32 start_time, secs, usecs, caplen, wirelen;
+static guint32 start_time, usecs, caplen, wirelen;
+static time_t secs;
 struct ascend_phdr *pseudo_header;
 static guint8 *pkt_data;
 static gint64 first_hexbyte;


You are receiving this mail because:
  • You are watching all bug changes.