summaryrefslogtreecommitdiffstats
path: root/x11/gnomepanel/files/patch-applets_clock_clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'x11/gnomepanel/files/patch-applets_clock_clock.c')
-rw-r--r--x11/gnomepanel/files/patch-applets_clock_clock.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/x11/gnomepanel/files/patch-applets_clock_clock.c b/x11/gnomepanel/files/patch-applets_clock_clock.c
index 0b21f9967..7738df6bb 100644
--- a/x11/gnomepanel/files/patch-applets_clock_clock.c
+++ b/x11/gnomepanel/files/patch-applets_clock_clock.c
@@ -1,9 +1,6 @@
-
-$FreeBSD: ports/x11/gnomepanel/files/patch-applets_clock_clock.c,v 1.1 2003/09/18 06:49:26 marcus Exp $
-
---- applets/clock/clock.c 2002/05/14 14:08:16 1.1
-+++ applets/clock/clock.c 2002/05/14 14:12:56
-@@ -14,7 +14,9 @@
+--- applets/clock/clock.c.orig Thu Dec 4 17:57:00 2003
++++ applets/clock/clock.c Wed Dec 10 23:23:38 2003
+@@ -37,7 +37,9 @@
#include <dirent.h>
#include <string.h>
#include <time.h>
@@ -13,15 +10,15 @@ $FreeBSD: ports/x11/gnomepanel/files/patch-applets_clock_clock.c,v 1.1 2003/09/1
#include <panel-applet.h>
#include <panel-applet-gconf.h>
-@@ -684,7 +686,11 @@
- cd->hourformat = panel_applet_gconf_get_int (applet, KEY_HOUR_FORMAT, &error);
- if (error || (cd->hourformat != 12 && cd->hourformat != 24)) {
- /* if value is not valid, set it according to locale */
+@@ -1117,7 +1119,11 @@
+ {
+ const char *am;
+
+#ifdef HAVE_LANGINFO_H
- const char *am = nl_langinfo (AM_STR);
+ am = nl_langinfo (AM_STR);
+#else
-+ const char *am = "AM";
++ am = "AM";
+#endif
- cd->hourformat = (am[0] == '\0') ? 24 : 12;
+ return (am[0] == '\0') ? CLOCK_FORMAT_24 : CLOCK_FORMAT_12;
+ }
- if (error)