summaryrefslogtreecommitdiff
path: root/devel/rpc2
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2002-06-20 19:28:01 +0000
committerjlam <jlam@pkgsrc.org>2002-06-20 19:28:01 +0000
commit09255dc0f9a2cf35cf98b6db8ee7d911f6f6953b (patch)
tree56d8ad21b9771cd78517e5f607d643b0f4943c44 /devel/rpc2
parent797676b2b946540aa171d16d4a24d988d58caeb2 (diff)
downloadpkgsrc-09255dc0f9a2cf35cf98b6db8ee7d911f6f6953b.tar.gz
Update devel/rpc2 to version 1.13. Changes from version 1.10 include:
* Fixed crash when an expired connection receives a NAK. * Increased lower bound on retransmission time to 300ms. * Removed Linux specific optimization in processing time calculation which made RPC2 clients assume a server can respond faster than it actually does. * Fixed the very infrequent SFTP_SendResponse crash again, hopefully for real this time. * A non-masqueraded rpc2 client wouldn't send out it's SFTP packets through the rpc2 socket when talkin to a masqueraded rpc2-server. This broke backfetches through a firewall. * Added delayed acks, when an RPC2 operation on the server is taking more than 200ms, an unsolicited RPC2_BUSY is sent back to the client to avoid unnecessary retransmissions of the request. * Stricter prototyping for callback functions. * Fixed the very infrequent SFTP_SendResponse crash. * Keeping track of current fd offset in sftp to allow non-multirpc transfers from/to a non-seekable fd (eg. stdout).
Diffstat (limited to 'devel/rpc2')
-rw-r--r--devel/rpc2/Makefile6
-rw-r--r--devel/rpc2/PLIST22
-rw-r--r--devel/rpc2/distinfo8
-rw-r--r--devel/rpc2/patches/patch-aa10
4 files changed, 23 insertions, 23 deletions
diff --git a/devel/rpc2/Makefile b/devel/rpc2/Makefile
index 082113c49ed..013a281ca32 100644
--- a/devel/rpc2/Makefile
+++ b/devel/rpc2/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2001/06/19 03:28:32 jlam Exp $
+# $NetBSD: Makefile,v 1.11 2002/06/20 19:28:01 jlam Exp $
#
-DISTNAME= rpc2-1.10
+DISTNAME= rpc2-1.13
CATEGORIES= devel
MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/rpc2/src/ \
ftp://ftp.wu-wien.ac.at/pub/systems/coda/src/
@@ -17,7 +17,7 @@ USE_LIBTOOL= YES
USE_GMAKE= YES
USE_BUILDLINK_ONLY= YES
-LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
+LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
CONFIGURE_ENV+= PERL=${PERL5}
.include "../../devel/lwp/buildlink.mk"
diff --git a/devel/rpc2/PLIST b/devel/rpc2/PLIST
index cff61efea78..979c06809fb 100644
--- a/devel/rpc2/PLIST
+++ b/devel/rpc2/PLIST
@@ -1,4 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:26:12 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2002/06/20 19:28:01 jlam Exp $
+bin/filcon
+bin/rp2gen
include/rpc2/errors.h
include/rpc2/errorsdefs.h
include/rpc2/fail.h
@@ -7,21 +9,19 @@ include/rpc2/multi.h
include/rpc2/rpc2.h
include/rpc2/se.h
include/rpc2/sftp.h
-@dirrm include/rpc2
+lib/libfail.a
+lib/libfail.la
+lib/libfail.so
+lib/libfail.so.4
+lib/libfail.so.4.3
lib/librpc2.a
lib/librpc2.la
lib/librpc2.so
lib/librpc2.so.4
-lib/librpc2.so.4.1
+lib/librpc2.so.4.3
lib/libse.a
lib/libse.la
lib/libse.so
lib/libse.so.4
-lib/libse.so.4.1
-lib/libfail.a
-lib/libfail.la
-lib/libfail.so
-lib/libfail.so.4
-lib/libfail.so.4.1
-bin/rp2gen
-bin/filcon
+lib/libse.so.4.3
+@dirrm include/rpc2
diff --git a/devel/rpc2/distinfo b/devel/rpc2/distinfo
index 6b6720e1aa9..778164eac79 100644
--- a/devel/rpc2/distinfo
+++ b/devel/rpc2/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2001/05/31 22:52:17 jlam Exp $
+$NetBSD: distinfo,v 1.5 2002/06/20 19:28:01 jlam Exp $
-SHA1 (rpc2-1.10.tar.gz) = 51872b9c03ef9838de768ffe693d282836e00448
-Size (rpc2-1.10.tar.gz) = 377723 bytes
-SHA1 (patch-aa) = 11de3e9740bc749f725347b2d6da85210c8091cd
+SHA1 (rpc2-1.13.tar.gz) = b4f13fe3f878c632b66a6a1ac19883c735eeef4d
+Size (rpc2-1.13.tar.gz) = 447572 bytes
+SHA1 (patch-aa) = dcabf7b6f7afdf8f3e058facfe8a6442177a03bf
diff --git a/devel/rpc2/patches/patch-aa b/devel/rpc2/patches/patch-aa
index 6fea31c838e..1be9f5607b3 100644
--- a/devel/rpc2/patches/patch-aa
+++ b/devel/rpc2/patches/patch-aa
@@ -1,10 +1,10 @@
-$NetBSD: patch-aa,v 1.1 2001/05/31 22:52:17 jlam Exp $
+$NetBSD: patch-aa,v 1.2 2002/06/20 19:28:01 jlam Exp $
---- fail/parser.c.orig Mon Jan 31 17:23:07 2000
-+++ fail/parser.c Wed May 30 14:40:41 2001
-@@ -30,10 +30,7 @@
+--- fail/parser.c.orig Tue May 22 12:31:45 2001
++++ fail/parser.c
+@@ -33,10 +33,7 @@
+ #include <assert.h>
- #define READLINE_LIBRARY
#include <readline/readline.h>
-
-extern void using_history();