summaryrefslogtreecommitdiff
path: root/chat/centericq
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2005-09-06 08:10:57 +0000
committerabs <abs@pkgsrc.org>2005-09-06 08:10:57 +0000
commitee9906d1989b65788f92509fd0b4ed4464bc22a1 (patch)
tree93bf2742fc4e1bf90527c6e25c8e73ae1da1c960 /chat/centericq
parent8e32b054d75f8ceddac6834c017e26667ecbd768 (diff)
downloadpkgsrc-ee9906d1989b65788f92509fd0b4ed4464bc22a1.tar.gz
Fix NetBSD statvfs check to be >= 299000900 not >= 200040000
No pkgrevision bumps needed.
Diffstat (limited to 'chat/centericq')
-rw-r--r--chat/centericq/distinfo4
-rw-r--r--chat/centericq/patches/patch-aa6
2 files changed, 5 insertions, 5 deletions
diff --git a/chat/centericq/distinfo b/chat/centericq/distinfo
index 455f905d27a..1fbb00a2bd1 100644
--- a/chat/centericq/distinfo
+++ b/chat/centericq/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.16 2005/07/16 18:55:23 adrianp Exp $
+$NetBSD: distinfo,v 1.17 2005/09/06 08:10:57 abs Exp $
SHA1 (centericq-4.20.0.tar.bz2) = 14b37c5257039853f0a1b948c7eaa49581a5913c
RMD160 (centericq-4.20.0.tar.bz2) = 7f17cd87aa4b98269fa65173b3e6317143c7c8ca
Size (centericq-4.20.0.tar.bz2) = 1287040 bytes
-SHA1 (patch-aa) = 47dc554bb923e8fe3c5aeb3792166dc3fea1b46a
+SHA1 (patch-aa) = ba75c486f52d17cb9a0bf8354bf6b01b065b6716
SHA1 (patch-ab) = 6d9beb28024666bbfef2e95cab648d7058f8136c
SHA1 (patch-ac) = 74ae25e19bf5d250a407a937bf78405b38cc86da
SHA1 (patch-ad) = be8ba5c952bf560b0758c97ba81c4faef04ffe49
diff --git a/chat/centericq/patches/patch-aa b/chat/centericq/patches/patch-aa
index a3c1e73b45f..441e0fe5d0d 100644
--- a/chat/centericq/patches/patch-aa
+++ b/chat/centericq/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.3 2005/04/05 12:44:17 wiz Exp $
+$NetBSD: patch-aa,v 1.4 2005/09/06 08:10:57 abs Exp $
--- src/icqconf.cc.orig 2005-01-27 00:52:47.000000000 +0100
+++ src/icqconf.cc
@@ -11,7 +11,7 @@ $NetBSD: patch-aa,v 1.3 2005/04/05 12:44:17 wiz Exp $
+/* Find out about __NetBSD_Version__ */
+# include <sys/param.h>
+#endif
-+#if defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 200040000))
++#if defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 299000900))
#include <sys/statvfs.h>
#endif
@@ -41,7 +41,7 @@ $NetBSD: patch-aa,v 1.3 2005/04/05 12:44:17 wiz Exp $
fenoughdiskspace = true;
-#ifndef __sun__
-+#if !(defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 200040000)))
++#if !(defined(__sun__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 299000900)))
struct statfs st;
if(!statfs(conf.getdirname().c_str(), &st)) {
#else