diff options
author | wiz <wiz@pkgsrc.org> | 2002-09-29 17:37:18 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-09-29 17:37:18 +0000 |
commit | b63e44ddcac0b20e1d5155711b61ceba0cba8475 (patch) | |
tree | a399ad4444be4e94bfe264a70e7ff5a2ba962b27 /net/dctc | |
parent | b6ed1a0247e89b58a540ba173c9478074666b15e (diff) | |
download | pkgsrc-b63e44ddcac0b20e1d5155711b61ceba0cba8475.tar.gz |
Update to 0.83.5.
Changes:
- a special hub address is recognized "dummy_client". When this name is used
with the -g option, it is possible to start a client connected to no hub.
- When the dynamic IP flag is set, the IP is updated each time the /RECON
command is processed whatever the /RECON is successful or not (previous, only
a successful /RECON update the IP).
- When the dynamic IP flag is set, the IP is updated every minute.
- to ease port, stdout G_LOCK is now named std_out G_LOCK.
Diffstat (limited to 'net/dctc')
-rw-r--r-- | net/dctc/Makefile | 4 | ||||
-rw-r--r-- | net/dctc/distinfo | 9 | ||||
-rw-r--r-- | net/dctc/patches/patch-ad | 66 | ||||
-rw-r--r-- | net/dctc/patches/patch-af | 14 |
4 files changed, 9 insertions, 84 deletions
diff --git a/net/dctc/Makefile b/net/dctc/Makefile index 3f47f4da5fd..b3e88610a78 100644 --- a/net/dctc/Makefile +++ b/net/dctc/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2002/09/23 11:10:07 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2002/09/29 17:37:18 wiz Exp $ # -DISTNAME= dctc-0.83.4 +DISTNAME= dctc-0.83.5 CATEGORIES= net MASTER_SITES= http://www.ac2i.tzo.com/dctc/ diff --git a/net/dctc/distinfo b/net/dctc/distinfo index ff6b22190cc..bb7681a4002 100644 --- a/net/dctc/distinfo +++ b/net/dctc/distinfo @@ -1,13 +1,12 @@ -$NetBSD: distinfo,v 1.2 2002/09/23 11:10:07 wiz Exp $ +$NetBSD: distinfo,v 1.3 2002/09/29 17:37:18 wiz Exp $ -SHA1 (dctc-0.83.4.tar.gz) = 68e9c1aa3aa90ba6e09003e4959608cb06a824fe -Size (dctc-0.83.4.tar.gz) = 247088 bytes +SHA1 (dctc-0.83.5.tar.gz) = 804e1924e5441dbcf0650971149c5d206683bf9f +Size (dctc-0.83.5.tar.gz) = 247418 bytes SHA1 (patch-aa) = 68a3ca5f8b7e28717e1a294456be56c846f3c521 SHA1 (patch-ab) = 59ae59cdcfb6a279fc241d6d55a78a64aa36ad9f SHA1 (patch-ac) = e851bca630b1db46a0fce9843f7dc81049aadeec -SHA1 (patch-ad) = b99489b8a14db6781f74dda15d53306a6434c09a SHA1 (patch-ae) = 40e4f5c3929beb1b118a7a8180cdf93a2083e084 -SHA1 (patch-af) = ab50755aee9900bf23d4888f90b25614c0866f16 +SHA1 (patch-af) = 9b233cc5eda05083bac5eb688b9ad11daec77645 SHA1 (patch-ag) = 61f8cc1cb35312de15dbc43e0ce7d185b7cda88e SHA1 (patch-ah) = 4d481b1fcb1b32debf44b4506ed39be09d64ae79 SHA1 (patch-ai) = 787fe1e96b03e2ab4ec5de6ccb765e1a4ae9bb5c diff --git a/net/dctc/patches/patch-ad b/net/dctc/patches/patch-ad deleted file mode 100644 index 5885e7cc5e4..00000000000 --- a/net/dctc/patches/patch-ad +++ /dev/null @@ -1,66 +0,0 @@ -$NetBSD: patch-ad,v 1.1.1.1 2002/09/11 20:47:14 wiz Exp $ - ---- src/display.c.orig Mon Jul 15 16:32:39 2002 -+++ src/display.c -@@ -36,7 +36,7 @@ - #include "var.h" - - /* this mutex provides a lock for stdout to avoid display conflict between thread */ --G_LOCK_DEFINE_STATIC(stdout); -+G_LOCK_DEFINE_STATIC(std_out); - - static FILE *log_fd=NULL; - static FILE *errlog_fd=NULL; -@@ -135,7 +135,7 @@ void disp_msg_full(DISP_MSG_TYPE msg_typ - if((msg_type==DEBUG_MSG)&&(debug_mode==0)) - return; - -- G_LOCK(stdout); -+ G_LOCK(std_out); - o_str=g_string_new(""); - - va_start(ap,fnc_name); -@@ -258,7 +258,7 @@ void disp_msg_full(DISP_MSG_TYPE msg_typ - va_end(ap); - - fflush(stdout); /* flush stdout before unlocking */ -- G_UNLOCK(stdout); -+ G_UNLOCK(std_out); - } - - /***********************************/ -@@ -269,7 +269,7 @@ void disp_msg_full(DISP_MSG_TYPE msg_typ - void change_logfile(char *filename) - { - /* to avoid potential access conflict, we lock the display */ -- G_LOCK(stdout); -+ G_LOCK(std_out); - - /* close the previously existing FILE */ - if(log_fd!=NULL) -@@ -287,7 +287,7 @@ void change_logfile(char *filename) - disp_msg(ERR_MSG,"change_logfile",strerror(errno),NULL); - } - } -- G_UNLOCK(stdout); -+ G_UNLOCK(std_out); - } - - /***************************************/ -@@ -298,7 +298,7 @@ void change_logfile(char *filename) - void change_errlogfile(char *filename) - { - /* to avoid potential access conflict, we lock the display */ -- G_LOCK(stdout); -+ G_LOCK(std_out); - - /* close the previously existing FILE */ - if(errlog_fd!=NULL) -@@ -316,6 +316,6 @@ void change_errlogfile(char *filename) - disp_msg(ERR_MSG,"change_errlogfile",strerror(errno),NULL); - } - } -- G_UNLOCK(stdout); -+ G_UNLOCK(std_out); - } - diff --git a/net/dctc/patches/patch-af b/net/dctc/patches/patch-af index ff1ab33112f..5ef89e3e8f2 100644 --- a/net/dctc/patches/patch-af +++ b/net/dctc/patches/patch-af @@ -1,16 +1,8 @@ -$NetBSD: patch-af,v 1.1.1.1 2002/09/11 20:47:14 wiz Exp $ +$NetBSD: patch-af,v 1.2 2002/09/29 17:37:20 wiz Exp $ ---- src/main.c.orig Mon Jul 15 16:39:50 2002 +--- src/main.c.orig Sat Sep 28 18:52:38 2002 +++ src/main.c -@@ -34,11 +34,15 @@ - #include <sys/param.h> - #include <sys/utsname.h> - #include <sys/un.h> -+#ifdef __linux__ - #include <linux/sem.h> /* for the value of SEMVMX */ -+#else -+#include <sys/sem.h> -+#endif +@@ -42,7 +42,7 @@ #include <errno.h> #include <getopt.h> #include <string.h> |