Skip to content

Commit

Permalink
Upgrade to 1.33. Changes: Now handles fragments. Also fixed a few min…
Browse files Browse the repository at this point in the history
…or bugs.
  • Loading branch information
hubertf committed Jul 15, 1999
1 parent bf00851 commit b8848e6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 27 deletions.
4 changes: 2 additions & 2 deletions net/ngrep/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.2 1999/07/02 10:26:02 agc Exp $
# $NetBSD: Makefile,v 1.3 1999/07/15 00:44:03 hubertf Exp $
#

DISTNAME= ngrep-1.31
DISTNAME= ngrep-1.33
CATEGORIES= net
MASTER_SITES= http://www.packetfactory.net/ngrep/

Expand Down
4 changes: 2 additions & 2 deletions net/ngrep/files/md5
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$NetBSD: md5,v 1.1.1.1 1999/06/28 01:34:23 hubertf Exp $
$NetBSD: md5,v 1.2 1999/07/15 00:44:04 hubertf Exp $

MD5 (ngrep-1.31.tar.gz) = a46b56aaf9c28f38e1761372c46a11a3
MD5 (ngrep-1.33.tar.gz) = e2b7bfa038024b790d1bbd0d70a52805
4 changes: 2 additions & 2 deletions net/ngrep/files/patch-sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$NetBSD: patch-sum,v 1.1 1999/07/09 14:12:25 agc Exp $
$NetBSD: patch-sum,v 1.2 1999/07/15 00:44:04 hubertf Exp $

MD5 (patch-aa) = f2ddc2b3be0f19534ec0eadd33511255
MD5 (patch-aa) = 1ec049c091629294324934c5cf08bc9f
MD5 (patch-ab) = 69a31dd33fc5f50782f28090bfaa96fa
26 changes: 5 additions & 21 deletions net/ngrep/patches/patch-aa
Original file line number Diff line number Diff line change
@@ -1,24 +1,8 @@
$NetBSD: patch-aa,v 1.1 1999/07/02 10:26:03 agc Exp $
$NetBSD: patch-aa,v 1.2 1999/07/15 00:44:04 hubertf Exp $

Look in the correct place for the new net/bpf.h
Hack alert - on Solaris, need -lxnet as well.

--- configure 1999/07/02 09:35:44 1.1
+++ configure 1999/07/02 09:41:45
@@ -1208,7 +1208,11 @@
echo $ac_n "checking for old version of bpf.h""... $ac_c" 1>&6
echo "configure:1210: checking for old version of bpf.h" >&5
if test -z "$pcapdir"; then
- dir="/usr/include";
+ if test -f $prefix/include/net/bpf.h; then
+ dir="$prefix/include";
+ else
+ dir="/usr/include";
+ fi
else
dir="$pcapdir";
fi
@@ -1275,7 +1279,12 @@
--- configure.orig Wed Jul 7 20:06:12 1999
+++ configure Thu Jul 15 01:31:09 1999
@@ -1299,7 +1299,12 @@
echo $ac_n "(cached) $ac_c" 1>&6
else
ac_save_LIBS="$LIBS"
Expand All @@ -30,5 +14,5 @@ Hack alert - on Solaris, need -lxnet as well.
+ LIBS="-lpcap $LIBS" ;;
+esac
cat > conftest.$ac_ext <<EOF
#line 1281 "configure"
#line 1305 "configure"
#include "confdefs.h"

0 comments on commit b8848e6

Please sign in to comment.