diff -Nru netexpect-0.22/debian/changelog netexpect-0.22/debian/changelog --- netexpect-0.22/debian/changelog 2014-08-02 20:09:37.000000000 +0000 +++ netexpect-0.22/debian/changelog 2016-06-15 01:30:21.000000000 +0000 @@ -1,3 +1,10 @@ +netexpect (0.22-2~wheezy+rpi1) wheezy-staging; urgency=low + + * Rebuild for wheezy (to allow wireshark transition to go through) + * Add a typedef in to fix "unknown type name ‘u_char’" + + -- Peter Michael Green Wed, 15 Jun 2016 01:20:23 +0000 + netexpect (0.22-2) unstable; urgency=medium * Build-depend on Wireshark development packages >= 1.12.0 diff -Nru netexpect-0.22/debian/patches/fix_u_char.patch netexpect-0.22/debian/patches/fix_u_char.patch --- netexpect-0.22/debian/patches/fix_u_char.patch 1970-01-01 00:00:00.000000000 +0000 +++ netexpect-0.22/debian/patches/fix_u_char.patch 2016-06-15 01:32:48.000000000 +0000 @@ -0,0 +1,13 @@ +Description: Add a typedef in to fix "unknown type name ‘u_char’" +Author: Peter Michael Green + +--- netexpect-0.22.orig/src/include/packets.h ++++ netexpect-0.22/src/include/packets.h +@@ -51,6 +51,7 @@ extern column_info cinfo; + extern void pkt_init(const char *); + extern int pkt_show_dissection(Tcl_Interp *); + extern int pkt_clear_dissection(Tcl_Interp *, int, Tcl_Obj * const *); ++typedef unsigned char u_char; + extern int pkt_dissect_tcl(Tcl_Interp *, const u_char *, + struct wtap_pkthdr *, frame_data *, + dfilter_t *, const char *, int); diff -Nru netexpect-0.22/debian/patches/series netexpect-0.22/debian/patches/series --- netexpect-0.22/debian/patches/series 2012-06-13 22:32:47.000000000 +0000 +++ netexpect-0.22/debian/patches/series 2016-06-15 01:32:10.000000000 +0000 @@ -0,0 +1 @@ +fix_u_char.patch