forked from the-tcpdump-group/libpcap
-
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.
Go with 0.9, not 1.0, for the next release.
- Loading branch information
Showing
3 changed files
with
10 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@(#) $Header: /tcpdump/master/libpcap/README,v 1.28 2003-11-13 01:57:10 mcr Exp $ (LBL) | ||
@(#) $Header: /tcpdump/master/libpcap/README,v 1.29 2004-10-12 01:55:47 guy Exp $ (LBL) | ||
|
||
LIBPCAP 0.8 | ||
LIBPCAP 0.9 | ||
Now maintained by "The Tcpdump Group" | ||
See www.tcpdump.org | ||
|
||
|
@@ -11,7 +11,7 @@ Anonymous CVS is available via: | |
(password "anoncvs") | ||
cvs -d :pserver:[email protected]:/tcpdump/master checkout libpcap | ||
|
||
Version 0.8 of LIBPCAP can be retrieved with the CVS tag "libpcap_0_8rel1": | ||
Version 0.9 of LIBPCAP can be retrieved with the CVS tag "libpcap_0_9rel1": | ||
cvs -d :pserver:[email protected]:/tcpdump/master checkout -r libpcap_0_8rel1 libpcap | ||
|
||
Please send patches against the master copy to [email protected]. | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
1.0-PRE-CVS | ||
0.9-PRE-CVS |
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
%define prefix /usr | ||
%define version 0.8 | ||
%define version 0.9 | ||
|
||
Summary: packet capture library | ||
Name: libpcap | ||
Version: %version | ||
Release: 1 | ||
Group: Development/Libraries | ||
Copyright: BSD | ||
Source: libpcap-0.8.tar.gz | ||
Source: libpcap-0.9-PRE-CVS.tar.gz | ||
BuildRoot: /tmp/%{name}-buildroot | ||
URL: http://www.tcpdump.org | ||
|
||
%description | ||
Packet-capture library LIBPCAP 0.8 | ||
Packet-capture library LIBPCAP 0.9 | ||
Now maintained by "The Tcpdump Group" | ||
See http://www.tcpdump.org | ||
Please send inquiries/comments/reports to [email protected] | ||
|
@@ -35,9 +35,9 @@ mkdir -p $RPM_BUILD_ROOT/usr/include/net | |
mkdir -p $RPM_BUILD_ROOT/usr/man/man3 | ||
make install DESTDIR=$RPM_BUILD_ROOT mandir=/usr/share/man | ||
cd $RPM_BUILD_ROOT/usr/lib | ||
V1=`echo 0.8 | sed 's/\\.[^\.]*$//g'` | ||
V2=`echo 0.8 | sed 's/\\.[^\.]*\.[^\.]*$//g'` | ||
ln -sf libpcap.so.0.8 libpcap.so.$V1 | ||
V1=`echo 0.9 | sed 's/\\.[^\.]*$//g'` | ||
V2=`echo 0.9 | sed 's/\\.[^\.]*\.[^\.]*$//g'` | ||
ln -sf libpcap.so.0.9 libpcap.so.$V1 | ||
if test "$V2" -ne "$V1"; then | ||
ln -sf libpcap.so.$V1 libpcap.so.$V2 | ||
ln -sf libpcap.so.$V2 libpcap.so | ||
|