b004d06c23
This is a daemon which allows you to emulate middle and right click as well as a mouse wheel. It was originally written for Apple PowerPC laptops with a single button, but can be used on any hardware.
13 lines
358 B
Diff
13 lines
358 B
Diff
Author: <gaudenz@debian.org>
|
|
Description: Don't kill ourselves if not forking into the background
|
|
--- a/mouseemu.c
|
|
+++ b/mouseemu.c
|
|
@@ -706,7 +706,7 @@
|
|
}
|
|
/* tell the parent we are running without problems */
|
|
/* What should we do if the parent is dead? */
|
|
- if (answer) {
|
|
+ if (answer && !nofork) {
|
|
answer=0;
|
|
kill(getppid(), SIGUSR1);
|
|
}
|