diff options
author | snj <snj@pkgsrc.org> | 2008-11-06 19:59:04 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2008-11-06 19:59:04 +0000 |
commit | 06367cb3e66ab4288027d7863f622a30fe74c8bc (patch) | |
tree | 1a3944c93cb4942efc86c1620689927af255633e /chat | |
parent | ab11b12977a6b881a61eb4a11c4cace1f1851de5 (diff) | |
download | pkgsrc-06367cb3e66ab4288027d7863f622a30fe74c8bc.tar.gz |
Update to 0.6.3. Zillions of bug fixes, see the included ChangeLog for
details.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/climm/Makefile | 6 | ||||
-rw-r--r-- | chat/climm/distinfo | 9 | ||||
-rw-r--r-- | chat/climm/patches/patch-aa | 47 |
3 files changed, 6 insertions, 56 deletions
diff --git a/chat/climm/Makefile b/chat/climm/Makefile index 942e79aeafa..142b9ea4dc5 100644 --- a/chat/climm/Makefile +++ b/chat/climm/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2008/06/12 02:14:16 joerg Exp $ -# +# $NetBSD: Makefile,v 1.6 2008/11/06 19:59:04 snj Exp $ -DISTNAME= climm-0.6.2 -#PKGREVISION= 2 +DISTNAME= climm-0.6.3 CATEGORIES= chat MASTER_SITES= http://www.climm.org/source/ EXTRACT_SUFX= .tgz diff --git a/chat/climm/distinfo b/chat/climm/distinfo index 585d5c2489a..c6da2add160 100644 --- a/chat/climm/distinfo +++ b/chat/climm/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.2 2008/03/01 21:14:11 mjl Exp $ +$NetBSD: distinfo,v 1.3 2008/11/06 19:59:04 snj Exp $ -SHA1 (climm-0.6.2.tgz) = 42ab55aa576a9ab0b51d83b38dc06af1a5467941 -RMD160 (climm-0.6.2.tgz) = 7a52b4d26456c1068707e5cc3bafdbad31a28e2a -Size (climm-0.6.2.tgz) = 1190182 bytes -SHA1 (patch-aa) = e5a5fea34fd165efe5f91e71a1c9cd9cb4a7cb84 +SHA1 (climm-0.6.3.tgz) = ea4a17d4ad86f25719957ca906dd9d46e00caaa9 +RMD160 (climm-0.6.3.tgz) = 849fe9185bb93d94ffd18289d837f4c51061192b +Size (climm-0.6.3.tgz) = 1189460 bytes diff --git a/chat/climm/patches/patch-aa b/chat/climm/patches/patch-aa deleted file mode 100644 index 77c44ca9b92..00000000000 --- a/chat/climm/patches/patch-aa +++ /dev/null @@ -1,47 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2007/11/28 11:45:34 mjl Exp $ - ---- src/os_unix.c.orig 2007-11-28 11:58:20.000000000 +0100 -+++ src/os_unix.c 2007-11-28 12:13:49.000000000 +0100 -@@ -17,6 +17,12 @@ - #include <ctype.h> - #endif - -+#ifndef MAXINT -+#include <limits.h> -+#include <utmpx.h> -+#define MAXINT INT_MAX -+#endif -+ - static int console_idle (time_t now, struct utmp *u) - { - struct stat sbuf; -@@ -43,7 +49,7 @@ - */ - UDWORD os_DetermineIdleTime (time_t now, time_t last) - { -- struct utmp *u; -+ struct utmpx *u; - struct passwd *pass; - uid_t uid; - int tmp, min = MAXINT; -@@ -54,9 +60,8 @@ - if (!pass) - return -1; - -- utmpname (UTMP_FILE); -- setutent(); -- while ((u = getutent())) -+ setutxent(); -+ while ((u = getutxent())) - { - if (u->ut_type != USER_PROCESS) - continue; -@@ -67,7 +72,7 @@ - tmp = console_idle (now, u); - min = (tmp < min) ? tmp : min ; - } -- endutent(); -+ endutxent(); - if (min == MAXINT || now - last < min) - min = now - last; - return min; |