diff options
author | wiz <wiz@pkgsrc.org> | 2006-10-18 00:03:44 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-10-18 00:03:44 +0000 |
commit | b5eee3127a4d23085aeb6d07e0e6a62d66f2ca2d (patch) | |
tree | 40c3f22a53a088c9e169a4814926aecf5100e591 /x11/paragui | |
parent | 2347e6bc8047df48f8cf5b599206a8953ee85c25 (diff) | |
download | pkgsrc-b5eee3127a4d23085aeb6d07e0e6a62d66f2ca2d.tar.gz |
Fix build on amd64/4.99.3.
Diffstat (limited to 'x11/paragui')
-rw-r--r-- | x11/paragui/distinfo | 3 | ||||
-rw-r--r-- | x11/paragui/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/paragui/distinfo b/x11/paragui/distinfo index 23c97a36077..8aa6f0c125a 100644 --- a/x11/paragui/distinfo +++ b/x11/paragui/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2006/09/28 19:00:02 minskim Exp $ +$NetBSD: distinfo,v 1.6 2006/10/18 00:03:44 wiz Exp $ SHA1 (paragui-1.0.4.tar.gz) = 3e412618b77499bf08a3eb478fec38f0a35ce86f RMD160 (paragui-1.0.4.tar.gz) = c6352dfe99344bf2dc604784ac8ef0a80dbcb5ad Size (paragui-1.0.4.tar.gz) = 1089511 bytes SHA1 (patch-aa) = f4c72aed471674e0cbed473ecbcee18895a5aaba +SHA1 (patch-ab) = af89e83ac8a95dc09a5e2c73df30c3be8d54a82a diff --git a/x11/paragui/patches/patch-ab b/x11/paragui/patches/patch-ab new file mode 100644 index 00000000000..b84299bd548 --- /dev/null +++ b/x11/paragui/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/10/18 00:03:44 wiz Exp $ + +--- src/core/pgmsgmap.cpp.orig 2003-01-04 21:13:40.000000000 +0000 ++++ src/core/pgmsgmap.cpp +@@ -83,7 +83,7 @@ void PG_DisplayOBJCBMAP(OBJCBMAP* list) + return; + + for ( li = list->begin() ; li != list->end() ; li++ ) { +- PG_LogDBG(" - Message Object: %d Event Handler Data: %d", (int)(*li).first, (int)(*li).second); ++ PG_LogDBG(" - Message Object: %ld Event Handler Data: %ld", (long)(*li).first, (long)(*li).second); + } + } + |