SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
39
x11/mouseclock/patches/patch-mouseclock_c
Normal file
39
x11/mouseclock/patches/patch-mouseclock_c
Normal file
|
@ -0,0 +1,39 @@
|
|||
--- mouseclock.c.orig Sun May 5 18:47:18 1996
|
||||
+++ mouseclock.c Fri Oct 26 22:37:18 2007
|
||||
@@ -31,6 +31,7 @@ int Scr;
|
||||
Window Root;
|
||||
int shadow_size = 2;
|
||||
int shadow_mode = 1;
|
||||
+int ampm = 0;
|
||||
|
||||
/* ---------------------------------------------------------------- */
|
||||
void
|
||||
@@ -56,6 +57,7 @@ usage (const char *nom)
|
||||
printf ("-display <dpy> display name\n");
|
||||
printf ("-fg <color> foreground color\n");
|
||||
printf ("-fn <font_name> font to use\n");
|
||||
+ printf ("-12hr use 12-hour format\n");
|
||||
|
||||
exit (1);
|
||||
}
|
||||
@@ -266,6 +268,11 @@ main (int argc, char **argv)
|
||||
shadow_mode = 0;
|
||||
continue;
|
||||
}
|
||||
+ if (!strcmp ("-12hr", argv[i]))
|
||||
+ {
|
||||
+ ampm = 1;
|
||||
+ continue;
|
||||
+ }
|
||||
usage (argv[0]);
|
||||
}
|
||||
|
||||
@@ -295,7 +302,7 @@ main (int argc, char **argv)
|
||||
struct tm *now_tm = localtime (&now);
|
||||
Cursor cur;
|
||||
|
||||
- h = now_tm->tm_hour;
|
||||
+ h = ampm && (now_tm->tm_hour - 12 > 0) ? now_tm->tm_hour - 12 : now_tm->tm_hour;
|
||||
m = now_tm->tm_min;
|
||||
|
||||
if (h != last_h || m != last_m)
|
Loading…
Add table
Add a link
Reference in a new issue