1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Update to 0.2.3.

This commit is contained in:
Pete Fritchman 2003-01-05 06:50:41 +00:00
parent 466c0a9521
commit b39d5ffafa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=72556
5 changed files with 2 additions and 55 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= libcapsinetwork
PORTVERSION= 0.2.0
PORTVERSION= 0.2.3
CATEGORIES= devel net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

View File

@ -1 +1 @@
MD5 (libcapsinetwork-0.2.0.tar.gz) = 43d5515aac68401cf383b45a0bb8162c
MD5 (libcapsinetwork-0.2.3.tar.gz) = f322d688c043b8dc41e4491606f1d119

View File

@ -1,21 +0,0 @@
$FreeBSD$
--- listener.cc.orig Thu Oct 24 14:26:02 2002
+++ listener.cc Thu Oct 24 14:34:19 2002
@@ -14,11 +14,13 @@
// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
-//#include <netinet/in.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/time.h>
+
+#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
-#include <sys/socket.h>
-#include <sys/types.h>
#include <unistd.h>
#include "listener.h"

View File

@ -1,12 +0,0 @@
$FreeBSD$
--- listener.h.orig Thu Oct 24 14:37:41 2002
+++ listener.h Thu Oct 24 14:37:55 2002
@@ -19,6 +19,7 @@
#include <string>
#include <vector>
+#include <sys/types.h>
class ListenPort;
class Socket;

View File

@ -1,20 +0,0 @@
$FreeBSD$
--- listenport.cc.orig Thu Oct 24 14:36:09 2002
+++ listenport.cc Thu Oct 24 14:36:27 2002
@@ -15,12 +15,12 @@
// Boston, MA 02111-1307, USA.
+#include <sys/types.h>
+#include <sys/socket.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <netdb.h>
-//#include <netinet/in.h>
-#include <sys/socket.h>
-#include <sys/types.h>
+#include <netinet/in.h>
#include <unistd.h>
#include "listenport.h"