summaryrefslogtreecommitdiff
path: root/net/ttt
diff options
context:
space:
mode:
authorhubertf <hubertf>2000-12-16 04:02:27 +0000
committerhubertf <hubertf>2000-12-16 04:02:27 +0000
commitfb7f90583b818e6a2d81d60ed295aa1053d01b7a (patch)
treea539a23afc2d3da2a51b21e8f0d45f702e33632c /net/ttt
parentb9bef8d686c724c5dbc486b82104652bc97c2e14 (diff)
downloadpkgsrc-fb7f90583b818e6a2d81d60ed295aa1053d01b7a.tar.gz
Update to 1.5, plus fix support for PPP interfaces while there
(adjust for our new PPP DLTs). Changes: 00/06/09 version-1.5 always use link level packet size to record traffic. 00/04/24 support tcl-8.2/tk-8.2. change the compiler optimization flag from O6 to O2. 00/01/05 net_read.c: check the total length field in the ip header. we found illegal values in our traffic traces which causes assertion in b_addsize to fail.
Diffstat (limited to 'net/ttt')
-rw-r--r--net/ttt/Makefile4
-rw-r--r--net/ttt/files/md54
-rw-r--r--net/ttt/files/patch-sum3
-rw-r--r--net/ttt/patches/patch-ac16
4 files changed, 22 insertions, 5 deletions
diff --git a/net/ttt/Makefile b/net/ttt/Makefile
index 05720684ebb..5f48ebf7d0c 100644
--- a/net/ttt/Makefile
+++ b/net/ttt/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1.1.1 2000/05/22 03:55:16 sakamoto Exp $
+# $NetBSD: Makefile,v 1.2 2000/12/16 04:02:27 hubertf Exp $
#
-DISTNAME= ttt-1.4
+DISTNAME= ttt-1.5
CATEGORIES= net
MASTER_SITES= ftp://ftp.csl.sony.co.jp/pub/kjc/
diff --git a/net/ttt/files/md5 b/net/ttt/files/md5
index a69ad760d73..f84e61b0f5c 100644
--- a/net/ttt/files/md5
+++ b/net/ttt/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.1.1.1 2000/05/22 03:55:17 sakamoto Exp $
+$NetBSD: md5,v 1.2 2000/12/16 04:02:27 hubertf Exp $
-MD5 (ttt-1.4.tar.gz) = e66ee9a16aef3047c6bb4d738a1ffdbe
+MD5 (ttt-1.5.tar.gz) = cce0d861864f6cee3e2cbcc9e4491570
diff --git a/net/ttt/files/patch-sum b/net/ttt/files/patch-sum
index 768cb3be39a..eb3a5e9fc90 100644
--- a/net/ttt/files/patch-sum
+++ b/net/ttt/files/patch-sum
@@ -1,4 +1,5 @@
-$NetBSD: patch-sum,v 1.1.1.1 2000/05/22 03:55:17 sakamoto Exp $
+$NetBSD: patch-sum,v 1.2 2000/12/16 04:02:27 hubertf Exp $
MD5 (patch-aa) = b719d39a410f461c180b8bff90d5a102
MD5 (patch-ab) = 494b72f13de3ced5581a9d5419397559
+MD5 (patch-ac) = f12984532909a2c8faec1b9a4243d456
diff --git a/net/ttt/patches/patch-ac b/net/ttt/patches/patch-ac
new file mode 100644
index 00000000000..db198782c4e
--- /dev/null
+++ b/net/ttt/patches/patch-ac
@@ -0,0 +1,16 @@
+$NetBSD: patch-ac,v 1.1 2000/12/16 04:02:27 hubertf Exp $
+
+--- net_read.c.orig Sat Dec 16 04:33:13 2000
++++ net_read.c
+@@ -764,6 +764,11 @@
+ #endif
+ { sl_if_print, DLT_SLIP },
+ { ppp_if_read, DLT_PPP },
++#ifdef __NetBSD__
++ { ppp_if_read, DLT_PPP_BSDOS },
++ { ppp_if_read, DLT_PPP_SERIAL },
++ { ppp_if_read, DLT_PPP_ETHER },
++#endif
+ { null_if_read, DLT_NULL },
+ { NULL, 0 },
+ };