summaryrefslogtreecommitdiff
path: root/wm/bbkeys/patches
diff options
context:
space:
mode:
authorjschauma <jschauma>2002-09-24 14:21:52 +0000
committerjschauma <jschauma>2002-09-24 14:21:52 +0000
commitfac7e13e0eca9355b4b72afb59420db5fd358e2d (patch)
treee81a451540167b460524bd4c90279aee07e5ebd9 /wm/bbkeys/patches
parentd74d6a7e0ebf182909b9699ab9397f4698402ab3 (diff)
downloadpkgsrc-fac7e13e0eca9355b4b72afb59420db5fd358e2d.tar.gz
Update to version 0.8.5, released today.
- fix recursive redhat-build bug (fixes 577135) - fix a memory leak in ToolWindow::windowAttributeChange. - remove server grabs from the Image code. They prove to not be needed (they no longer exist in the blackbox code.) And they cause the X server to lock indefinately if you run 2 bbkeys on the same display, running the second one from a terminal on the display. - when we recieve a startup message from blackbox, clear out any leftover windows in the window list. These are caused by the fact that on shutdown of blackbox, if any windows are unmanaged after bbkeys, bbkeys doesn't get notified of their destruction and so ends up with extra windows in its list. - fix compiling issues under solaris. Thanks to grub on irc for use of his time for testing. - get rid of work-around for pre-0.60 blackbox, which fixes bug that let you move the toolbar around with bbkeys. - fix window focus tracking bug. Fixes bug where you could manipulate the last focused window on a nono-visible workspace. - fix multi-head bug in main.cc. We now putenv("DISPLAY=...") so that applications launched will be launched on the correct display. Thanks to Greg Gilbert for his patch! - fix bug in main.cc (| rather than ||). Thanks to Roman Neuhauser! - fix bug in bbkeys.hh--increasing MaxInstructions to 100 for cthulhain - fix in bbkeys.cc -- XUngrabKey changed to use same call to find what screen we're on as the XGrabKey call - fix in bbkeys.cc -- doing "xterm -e sh -c $command" rather than "xterm -e $command". Thanks to Magnus Solvang for the bug report. Also, changing hideous char* and snprintf() to ostrstream, YAY!!
Diffstat (limited to 'wm/bbkeys/patches')
-rw-r--r--wm/bbkeys/patches/patch-aa10
-rw-r--r--wm/bbkeys/patches/patch-ab17
2 files changed, 5 insertions, 22 deletions
diff --git a/wm/bbkeys/patches/patch-aa b/wm/bbkeys/patches/patch-aa
index bd36ef4fbb4..789729d637a 100644
--- a/wm/bbkeys/patches/patch-aa
+++ b/wm/bbkeys/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.1 2002/03/18 09:23:03 wiz Exp $
+$NetBSD: patch-aa,v 1.2 2002/09/24 14:21:53 jschauma Exp $
---- Makefile.in.orig Fri Jan 18 14:34:58 2002
-+++ Makefile.in
-@@ -78,7 +78,7 @@
+--- Makefile.in.orig Tue Sep 24 10:06:49 2002
++++ Makefile.in Tue Sep 24 10:07:14 2002
+@@ -80,7 +80,7 @@
SUBDIRS = src data doc redhat
-docdir = $(prefix)/doc/bbkeys
+docdir = $(prefix)/share/doc/bbkeys
doc_DATA = README AUTHORS BUGS ChangeLog NEWS
- EXTRA_DIST = $(doc_DATA) debian redhat
+ EXTRA_DIST = $(doc_DATA) debian
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
diff --git a/wm/bbkeys/patches/patch-ab b/wm/bbkeys/patches/patch-ab
deleted file mode 100644
index 76fb9351e87..00000000000
--- a/wm/bbkeys/patches/patch-ab
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2002/03/18 09:23:03 wiz Exp $
-
---- src/bbkeys.cc.orig Tue Jan 15 04:21:25 2002
-+++ src/bbkeys.cc
-@@ -676,10 +676,10 @@
- char *args = new char[strlen(begin) + strlen(bbkeys_rcfile) +1];
- sprintf(args, "%s%s", begin, bbkeys_rcfile);
- res = execlp("rxvt", "rxvt", "-bg", "black", "-fg", "red",
-- "-e", args, NULL);
-+ "-e", "bbkeysconf.pl", "-rcfile", bbkeys_rcfile, NULL);
- if (res != 0) {
- execlp("xterm", "xterm", "-bg", "black", "-fg",
-- "red", "-e", args, NULL);
-+ "red", "-e", "bbkeysconf.pl", "-rcfile", bbkeys_rcfile, NULL);
- }
- delete args;
- }