diff options
Diffstat (limited to 'sysutils/wmbsdbatt/files/patch-wmbsdbatt.c')
-rw-r--r-- | sysutils/wmbsdbatt/files/patch-wmbsdbatt.c | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/sysutils/wmbsdbatt/files/patch-wmbsdbatt.c b/sysutils/wmbsdbatt/files/patch-wmbsdbatt.c deleted file mode 100644 index f482d54ba772..000000000000 --- a/sysutils/wmbsdbatt/files/patch-wmbsdbatt.c +++ /dev/null @@ -1,58 +0,0 @@ ---- wmbsdbatt.c.orig Sat Jul 2 15:23:41 2005 -+++ wmbsdbatt.c Sat Jul 2 15:35:19 2005 -@@ -33,6 +33,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <string.h> -+#include <unistd.h> - - #include <sys/types.h> - #include <sys/stat.h> -@@ -112,14 +113,26 @@ - void draw_all(void); - int init_stats(void); - int acpi_exists(void); -+void usage(void); - #if 0 - void draw_rate(void); - #endif - -+void -+usage(void) -+{ -+ fprintf(stderr, "%s\n%s\n%s\n", -+ "usage: wmbsdbatt [-h | -b]", -+ " -h help", -+ " -b start with backlight on"); -+ -+ exit(0); -+} -+ - int - main(int argc, char **argv) - { -- int charging, ncolor, show; -+ int charging, ncolor, show, ch; - long timeout; - long animation_timeout, update_timeout; - struct sigaction sa; -@@ -132,6 +145,19 @@ - - sa.sa_handler = SIG_IGN; - sa.sa_flags = SA_NOCLDWAIT; -+ while ((ch = getopt(argc, argv, "bh")) != -1) { -+ switch (ch) { -+ case 'b': -+ backlight = LIGHTON; -+ break; -+ case 'h': -+ usage(); -+ break; -+ default: -+ usage(); -+ break; -+ } -+ } - - sigemptyset(&sa.sa_mask); - sigaction(SIGCHLD, &sa, NULL); |