Accepting request 47591 from Base:System
Copy from Base:System/gpm based on submit request 47591 from user psmt OBS-URL: https://build.opensuse.org/request/show/47591 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gpm?expand=0&rev=24
This commit is contained in:
committed by
Git OBS Bridge
parent
ffe96b45e4
commit
3f2b332964
42
gpm-verbosity.patch
Normal file
42
gpm-verbosity.patch
Normal file
@@ -0,0 +1,42 @@
|
||||
Index: src/prog/gpm-root.y
|
||||
===================================================================
|
||||
--- src/prog/gpm-root.y.orig 2010-09-08 17:00:51.668569297 +0200
|
||||
+++ src/prog/gpm-root.y 2010-09-08 17:00:52.032543941 +0200
|
||||
@@ -870,7 +870,6 @@ int usage(void)
|
||||
" -m <number-or-name> modifier to use\n"
|
||||
" -u inhibit user configuration files\n"
|
||||
" -D don't auto-background and run as daemon\n"
|
||||
- " -V <verbosity-delta> increase amount of logged messages\n"
|
||||
);
|
||||
|
||||
return 1;
|
||||
Index: src/daemon/cmdline.c
|
||||
===================================================================
|
||||
--- src/daemon/cmdline.c.orig 2010-09-08 17:00:51.788560939 +0200
|
||||
+++ src/daemon/cmdline.c 2010-09-08 17:01:43.769151777 +0200
|
||||
@@ -78,8 +78,9 @@ void cmdline(int argc, char **argv)
|
||||
case 'u': option.autodetect = 1; break;
|
||||
case 'T': opt_test++; break;
|
||||
case 'v': printf(GPM_MESS_VERSION "\n"); exit(0);
|
||||
- case '2': (which_mouse->opt_three) = -1; break;
|
||||
- case '3': (which_mouse->opt_three) = 1; break;
|
||||
+ case 'V': break; /* gpm_debug_level not supported anymore */
|
||||
+ case '2': (which_mouse->opt_three) = -1; break;
|
||||
+ case '3': (which_mouse->opt_three) = 1; break;
|
||||
default: exit(usage("commandline"));
|
||||
}
|
||||
}
|
||||
Index: src/headers/message.h
|
||||
===================================================================
|
||||
--- src/headers/message.h.orig 2010-09-08 17:00:51.984547286 +0200
|
||||
+++ src/headers/message.h 2010-09-08 17:00:53.060472330 +0200
|
||||
@@ -98,8 +98,7 @@
|
||||
" -t mouse-type sets mouse type (default '%s')\n" \
|
||||
" Use a non-existent type (e.g. \"help\") to get a list\n" \
|
||||
" -T test: read mouse, no clients\n" \
|
||||
- " -v print version and exit\n" \
|
||||
- " -V verbosity increase number of logged messages\n\n\n" \
|
||||
+ " -v print version and exit\n\n\n" \
|
||||
" Examples:\n\n" \
|
||||
" gpm -m /dev/misc/psaux -t ps2 to start with a ps2 mouse\n" \
|
||||
" gpm -m /dev/tts/0 -t mman to use mouse man on COM1\n\n"
|
Reference in New Issue
Block a user