diff options
author | tv <tv> | 2005-03-10 14:13:24 +0000 |
---|---|---|
committer | tv <tv> | 2005-03-10 14:13:24 +0000 |
commit | 5a68a04ee74fd701cbceb893519e9ec43d60cbfa (patch) | |
tree | 621c54e1b72c0b2649f9dcb94b3fa79590c93f02 /chat | |
parent | 2737c545c688613ad5ad4f0fcb9856985dd4d8bc (diff) | |
download | pkgsrc-5a68a04ee74fd701cbceb893519e9ec43d60cbfa.tar.gz |
The utmp support is only used on Linux, so conditionalize inclusion of
utmp.h on __linux__ as well.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/centericq/distinfo | 3 | ||||
-rw-r--r-- | chat/centericq/patches/patch-ad | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/chat/centericq/distinfo b/chat/centericq/distinfo index ff0674e5577..e6cb25ffca1 100644 --- a/chat/centericq/distinfo +++ b/chat/centericq/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.13 2005/02/23 15:59:10 agc Exp $ +$NetBSD: distinfo,v 1.14 2005/03/10 14:13:24 tv Exp $ SHA1 (centericq-4.13.0.tar.bz2) = e8d276c689dd2284ed82e4655fe8cbf843e545d6 RMD160 (centericq-4.13.0.tar.bz2) = bc0f14bffce4777a233508694e0b10391337b320 @@ -6,3 +6,4 @@ Size (centericq-4.13.0.tar.bz2) = 1251118 bytes SHA1 (patch-aa) = b3e610a1a3b30a716215889b9f51c6de7e78fb22 SHA1 (patch-ab) = 6d9beb28024666bbfef2e95cab648d7058f8136c SHA1 (patch-ac) = 74ae25e19bf5d250a407a937bf78405b38cc86da +SHA1 (patch-ad) = be8ba5c952bf560b0758c97ba81c4faef04ffe49 diff --git a/chat/centericq/patches/patch-ad b/chat/centericq/patches/patch-ad new file mode 100644 index 00000000000..db39bae96be --- /dev/null +++ b/chat/centericq/patches/patch-ad @@ -0,0 +1,14 @@ +$NetBSD: patch-ad,v 1.1 2005/03/10 14:13:24 tv Exp $ + +--- kksystr-0.1/include/kkiproc.h.orig Tue Jul 9 13:07:29 2002 ++++ kksystr-0.1/include/kkiproc.h +@@ -9,7 +9,9 @@ + #include <string.h> + #include <sys/stat.h> + #include <sys/types.h> ++#ifdef __linux__ + #include <utmp.h> ++#endif + #include <string.h> + #include <ctype.h> + |