-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Lightfoot
committed
May 28, 2002
1 parent
8055b8f
commit 526d8ee
Showing
6 changed files
with
60 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ | |
# Copyright (c) 2001 Chris Lightfoot. All rights reserved. | ||
# Email: [email protected]; WWW: http://www.ex-parrot.com/~chris/ | ||
# | ||
# $Id: Makefile,v 1.16 2002/05/28 00:23:55 chris Exp $ | ||
# $Id: Makefile,v 1.17 2002/05/28 20:19:09 chris Exp $ | ||
# | ||
|
||
# Driftnet version. Do not alter. | ||
VERSION = 0.1.5pre1 | ||
VERSION = 0.1.5pre2 | ||
|
||
# Compiler to use. | ||
#CC = gcc | ||
|
@@ -26,8 +26,8 @@ CFLAGS += -I/usr/include/pcap | |
# Required on Linux to get BSDish definitions of the TCP/IP structs. | ||
CFLAGS += -D_BSD_SOURCE | ||
|
||
# We always need the pcap library. | ||
LDLIBS += -lpcap | ||
# We always need the pcap and pthread libraries. | ||
LDLIBS += -lpcap -lpthread | ||
|
||
# Optional C compiler and linker flags. Typical driftnet builds have support | ||
# for displaying captured images in an X window, and need the following flags: | ||
|
@@ -43,7 +43,8 @@ LDLIBS += -ljpeg -lungif `gtk-config --libs` | |
SUBDIRS = | ||
|
||
TXTS = README TODO COPYING CHANGES CREDITS driftnet.1 driftnet.1.in | ||
SRCS = audio.c mpeghdr.c gif.c img.c jpeg.c png.c driftnet.c image.c display.c | ||
SRCS = audio.c mpeghdr.c gif.c img.c jpeg.c png.c driftnet.c image.c \ | ||
display.c playaudio.c | ||
HDRS = img.h driftnet.h mpeghdr.h | ||
BINS = driftnet | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
.\" Copyright (c) 2002 Chris Lightfoot. All rights reserved. | ||
.\" Email: [email protected]; WWW: http://www.ex-parrot.com/~chris/ | ||
.\" | ||
.\" $Id: driftnet.1,v 1.5 2002/05/28 00:23:55 chris Exp $ | ||
.\" $Id: driftnet.1,v 1.6 2002/05/28 20:19:09 chris Exp $ | ||
.\" | ||
|
||
.SH NAME | ||
|
@@ -83,9 +83,9 @@ syntax. User filter code is evaluated as `tcp and (\fIfilter code\fP)'. | |
Chris Lightfoot <[email protected]> | ||
|
||
.SH VERSION | ||
\fBDriftnet\fP, version0.1.5pre1. | ||
\fBDriftnet\fP, version 0.1.5pre1. | ||
.br | ||
$Id: driftnet.1,v 1.5 2002/05/28 00:23:55 chris Exp $ | ||
$Id: driftnet.1,v 1.6 2002/05/28 20:19:09 chris Exp $ | ||
|
||
.SH COPYING | ||
This program is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
.\" Copyright (c) 2002 Chris Lightfoot. All rights reserved. | ||
.\" Email: [email protected]; WWW: http://www.ex-parrot.com/~chris/ | ||
.\" | ||
.\" $Id: driftnet.1.in,v 1.1 2002/05/27 16:59:44 chris Exp $ | ||
.\" $Id: driftnet.1.in,v 1.2 2002/05/28 20:19:09 chris Exp $ | ||
.\" | ||
|
||
.SH NAME | ||
|
@@ -82,9 +82,9 @@ syntax. User filter code is evaluated as `tcp and (\fIfilter code\fP)'. | |
Chris Lightfoot <[email protected]> | ||
|
||
.SH VERSION | ||
\fBDriftnet\fP, version@@@VERSION@@@. | ||
\fBDriftnet\fP, version @@@VERSION@@@. | ||
.br | ||
$Id: driftnet.1.in,v 1.1 2002/05/27 16:59:44 chris Exp $ | ||
$Id: driftnet.1.in,v 1.2 2002/05/28 20:19:09 chris Exp $ | ||
|
||
.SH COPYING | ||
This program is free software; you can redistribute it and/or modify | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters