diff options
author | wiz <wiz@pkgsrc.org> | 2005-02-20 13:53:02 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-02-20 13:53:02 +0000 |
commit | e5c9a434bb1c672f2af848857aa8a24bdf547053 (patch) | |
tree | 52efb115de24b9d847a9de8c33b670d0c46a55c0 /x11 | |
parent | 10b34512aad01a6b0e1c683114d4721acf3fd792 (diff) | |
download | pkgsrc-e5c9a434bb1c672f2af848857aa8a24bdf547053.tar.gz |
Fix for gcc-2.95.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/Xbae/distinfo | 3 | ||||
-rw-r--r-- | x11/Xbae/patches/patch-ab | 20 |
2 files changed, 22 insertions, 1 deletions
diff --git a/x11/Xbae/distinfo b/x11/Xbae/distinfo index bbab6d345f3..1e092c1596a 100644 --- a/x11/Xbae/distinfo +++ b/x11/Xbae/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.5 2005/02/18 14:51:01 wiz Exp $ +$NetBSD: distinfo,v 1.6 2005/02/20 13:53:02 wiz Exp $ SHA1 (xbae-4.51.01.tar.gz) = 0eb1434fa33b5da112331937114cfd48b0878a31 Size (xbae-4.51.01.tar.gz) = 1746914 bytes SHA1 (patch-aa) = d61ed4bdb7509edbda2ff311a256710f35b57204 +SHA1 (patch-ab) = 26dfa1fdd60df5e892677a83e4e548481451c010 SHA1 (patch-ac) = 87246a832469d25b838194609bc3fafbb0437f46 SHA1 (patch-ad) = 0edfc40dd6dc6dd1da17d4190501b32ce6c2f938 SHA1 (patch-ae) = 2720252fd02bac06e3e2086f0e1f2fc0cca8cacc diff --git a/x11/Xbae/patches/patch-ab b/x11/Xbae/patches/patch-ab new file mode 100644 index 00000000000..056da91afdc --- /dev/null +++ b/x11/Xbae/patches/patch-ab @@ -0,0 +1,20 @@ +$NetBSD: patch-ab,v 1.3 2005/02/20 13:53:02 wiz Exp $ + +--- src/Matrix.c.orig Wed Dec 8 20:11:39 2004 ++++ src/Matrix.c +@@ -3023,6 +3023,7 @@ static void TraverseInTimeOut(XtPointer + */ + static void TraverseInCB(Widget clip, XbaeMatrixWidget mw, XtPointer call_data) + { ++ Boolean mapped; + DEBUGOUT(_XbaeDebug2(__FILE__, (Widget) mw, clip, "TraverseInCB\n")); + + /* +@@ -3031,7 +3032,6 @@ static void TraverseInCB(Widget clip, Xb + * are disallowed in 1.2 (we may be in this CB as a result of someone + * calling XmProcessTraversal). So we call it through a zero length timeout + */ +- Boolean mapped; + XtVaGetValues(TextChild(mw), XmNmappedWhenManaged, &mapped, NULL); + + if (mapped) { |