diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-06 10:11:48 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-06 10:11:48 +0800 |
commit | 1f68255bfb77949cfc234be8c15a250877960c0c (patch) | |
tree | 44357a4ab1c70d0eba0a21ce4add873e8cd7adec /x11/gnome-panel/files/patch-applets_clock_clock.c | |
parent | 65f126edf2428b642053b6522f4649412f0084e4 (diff) | |
download | marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar.gz marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar.bz2 marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar.lz marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar.xz marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.tar.zst marcuscom-ports-1f68255bfb77949cfc234be8c15a250877960c0c.zip |
- Clean out x11
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5031 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome-panel/files/patch-applets_clock_clock.c')
-rw-r--r-- | x11/gnome-panel/files/patch-applets_clock_clock.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/x11/gnome-panel/files/patch-applets_clock_clock.c b/x11/gnome-panel/files/patch-applets_clock_clock.c deleted file mode 100644 index ccf5378b1..000000000 --- a/x11/gnome-panel/files/patch-applets_clock_clock.c +++ /dev/null @@ -1,24 +0,0 @@ ---- applets/clock/clock.c.orig Tue Jan 13 11:55:58 2004 -+++ applets/clock/clock.c Wed Jan 14 15:43:39 2004 -@@ -47,7 +47,9 @@ - #include <dirent.h> - #include <string.h> - #include <time.h> -+#ifdef HAVE_LANGINFO_H - #include <langinfo.h> -+#endif - - #include <panel-applet.h> - #include <panel-applet-gconf.h> -@@ -539,7 +541,11 @@ - { - const char *am; - -+#ifdef HAVE_LANGINFO_H - am = nl_langinfo (AM_STR); -+#else -+ am = "AM"; -+#endif - return (am[0] == '\0') ? CLOCK_FORMAT_24 : CLOCK_FORMAT_12; - } - |