diff options
author | dmcmahill <dmcmahill> | 2002-03-31 14:25:51 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2002-03-31 14:25:51 +0000 |
commit | 6440bdd391fb76636530aff16c6a46bac3dd4545 (patch) | |
tree | 87c8a39fd9a80c13739f01d4c89238cea7696a9e /chat/ysm | |
parent | 1d1b63b8f3c487083587c485eb3a383d430c5509 (diff) | |
download | pkgsrc-6440bdd391fb76636530aff16c6a46bac3dd4545.tar.gz |
LP64 fix.
Diffstat (limited to 'chat/ysm')
-rw-r--r-- | chat/ysm/distinfo | 3 | ||||
-rw-r--r-- | chat/ysm/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/chat/ysm/distinfo b/chat/ysm/distinfo index 62e9eb375cb..47354e9c604 100644 --- a/chat/ysm/distinfo +++ b/chat/ysm/distinfo @@ -1,4 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/03/11 21:32:22 zuntum Exp $ +$NetBSD: distinfo,v 1.2 2002/03/31 14:25:51 dmcmahill Exp $ SHA1 (ysmv7_2_4_2.tgz) = ffe57566e001ed669ffb00d495b30851d459b774 Size (ysmv7_2_4_2.tgz) = 46793 bytes +SHA1 (patch-aa) = a8a392fd8096d3ce3c1710e5b5d2c2ea50ee69f9 diff --git a/chat/ysm/patches/patch-aa b/chat/ysm/patches/patch-aa new file mode 100644 index 00000000000..0798f26a5ea --- /dev/null +++ b/chat/ysm/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2002/03/31 14:25:51 dmcmahill Exp $ + +LP64 fix. This const gets used as an int not long. + +--- YSM.h.orig Tue Feb 19 21:14:27 2002 ++++ YSM.h +@@ -135,7 +135,7 @@ + /* Definition of YSM Status */ + + #define YSM_ONLINE 0x0000 +-#define YSM_OFFLINE (-1L) ++#define YSM_OFFLINE (-1) + #define YSM_INVISIBLE 0x0100 + #define YSM_NA 0x0005 + #define YSM_DND 0x0013 |