update to 0.99.1

This commit is contained in:
jolan 2003-07-13 06:02:05 +00:00
parent 021f8575c8
commit 2a61d0417e
5 changed files with 6 additions and 52 deletions

View File

@ -1,7 +1,7 @@
# $OpenBSD: Makefile,v 1.6 2003/06/16 05:18:53 jolan Exp $
# $OpenBSD: Makefile,v 1.7 2003/07/13 06:02:05 jolan Exp $
COMMENT= "programmable, ncurses-based AIM client"
DISTNAME= pork-0.99.0
COMMENT= "programmable ncurses-based AIM client"
DISTNAME= pork-0.99.1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ojnk/}

View File

@ -1,3 +1,3 @@
MD5 (pork-0.99.0.tar.gz) = bc1e4c9f23780c607dc3a5d32b19b207
RMD160 (pork-0.99.0.tar.gz) = 7325e57478fa8e3b6e22cd66195a08daf1395efc
SHA1 (pork-0.99.0.tar.gz) = 3d6a082d0d6048f2b96f230f006101cfb3acb687
MD5 (pork-0.99.1.tar.gz) = 0c4bcb533b595a66fb8a59801a936ba7
RMD160 (pork-0.99.1.tar.gz) = 196f32128075ce1b271fd30c04581e117b018142
SHA1 (pork-0.99.1.tar.gz) = a06321241e9f819b2bab2e8134f8f7aa99c2c098

View File

@ -1,22 +0,0 @@
$OpenBSD: patch-src_pork_inet_c,v 1.1 2003/06/16 05:18:53 jolan Exp $
--- src/pork_inet.c.orig Sun Jun 8 09:49:33 2003
+++ src/pork_inet.c Sun Jun 15 22:10:16 2003
@@ -19,8 +19,8 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
-#include <arpa/inet.h>
#include <netinet/in.h>
+#include <arpa/inet.h>
#include <pork_missing.h>
#include <pork_inet.h>
@@ -309,7 +309,7 @@ err_out:
int sock_is_error(int sock) {
int error;
- size_t errlen = sizeof(error);
+ socklen_t errlen = sizeof(error);
int ret;
ret = getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &errlen);

View File

@ -1,11 +0,0 @@
$OpenBSD: patch-src_pork_transfer_c,v 1.1 2003/06/16 05:18:53 jolan Exp $
--- src/pork_transfer.c.orig Wed Jun 11 00:52:10 2003
+++ src/pork_transfer.c Sun Jun 15 20:42:32 2003
@@ -19,6 +19,7 @@
#include <time.h>
#include <sys/time.h>
#include <sys/socket.h>
+#include <netinet/in.h>
#include <arpa/inet.h>
#include <pork.h>

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-src_pork_transfer_h,v 1.1 2003/06/16 05:18:53 jolan Exp $
--- src/pork_transfer.h.orig Sat Jun 14 09:19:53 2003
+++ src/pork_transfer.h Sun Jun 15 20:38:02 2003
@@ -11,8 +11,8 @@
#define __PORK_TRANSFER_H
#include <sys/socket.h>
-#include <arpa/inet.h>
#include <netinet/in.h>
+#include <arpa/inet.h>
#include <pork_inet.h>