# Description: gcc 4.0 fixes
#  themes/classic/*.xpm: remove static qualifier from data, makes gcc 4.0
#  happy (closes: bug#285475)
# Author: Andreas Jochens <aj@andaco.de>
# Last-Update: 2005

Index: asclock-xlib-9/languages/english/month.xpm
===================================================================
--- asclock-xlib-9.orig/languages/english/month.xpm	2008-03-28 05:38:55.000000000 +0900
+++ asclock-xlib-9/languages/english/month.xpm	2008-03-28 04:50:11.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char *month_xpm[] = {
+char *month_xpm[] = {
 /* width height num_colors chars_per_pixel */
 "    22    72        4            1",
 /* colors */
Index: asclock-xlib-9/languages/english/weekday.xpm
===================================================================
--- asclock-xlib-9.orig/languages/english/weekday.xpm	2008-03-28 05:39:22.000000000 +0900
+++ asclock-xlib-9/languages/english/weekday.xpm	2008-04-19 16:51:48.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char *weekday_xpm[] = {
+char *weekday_xpm[] = {
 /* width height num_colors chars_per_pixel */
 "    20    42        4            1",
 /* colors */
Index: asclock-xlib-9/themes/classic/clock.xpm
===================================================================
--- asclock-xlib-9.orig/themes/classic/clock.xpm	2008-04-19 18:24:30.000000000 +0900
+++ asclock-xlib-9/themes/classic/clock.xpm	2008-04-19 16:51:48.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char * clock_xpm[] = {
+char * clock_xpm[] = {
 "64 64 44 1",
 " 	c #CF3CCF3CCF3C",
 ".	c #30C230C230C2",
Index: asclock-xlib-9/themes/classic/date.xpm
===================================================================
--- asclock-xlib-9.orig/themes/classic/date.xpm	2008-04-19 18:25:15.000000000 +0900
+++ asclock-xlib-9/themes/classic/date.xpm	2008-04-19 16:51:48.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char *date_xpm[] = {
+char *date_xpm[] = {
 /* width height num_colors chars_per_pixel */
 "    90    13        4            1",
 /* colors */
Index: asclock-xlib-9/themes/classic/month.xpm
===================================================================
--- asclock-xlib-9.orig/themes/classic/month.xpm	2008-04-19 18:26:19.000000000 +0900
+++ asclock-xlib-9/themes/classic/month.xpm	2008-04-19 16:51:48.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char *month_xpm[] = {
+char *month_xpm[] = {
 /* width height num_colors chars_per_pixel */
 "    22    72        4            1",
 /* colors */
Index: asclock-xlib-9/themes/classic/weekday.xpm
===================================================================
--- asclock-xlib-9.orig/themes/classic/weekday.xpm	2008-04-19 18:26:56.000000000 +0900
+++ asclock-xlib-9/themes/classic/weekday.xpm	2008-04-19 16:51:48.000000000 +0900
@@ -1,5 +1,5 @@
 /* XPM */
-static char *weekday_xpm[] = {
+char *weekday_xpm[] = {
 /* width height num_colors chars_per_pixel */
 "    20    42        4            1",
 /* colors */
