Here's simple patch to move some data to .text
Please CC me as i'm not subscribe to the list.
Thanks.
-- 
GNOME http://www.gnomefr.org/
LibGTop http://directory.fsf.org/libgtop.html
Index: src/ne_xml.c
===================================================================
--- src/ne_xml.c	(révision 1019)
+++ src/ne_xml.c	(copie de travail)
@@ -170,7 +170,7 @@
 };
 
 /* empty attributes array to mimic expat behaviour */
-static const char *empty_atts[] = {NULL, NULL};
+static const char * const empty_atts[] = {NULL, NULL};
 
 /* macro for determining the attributes array to pass */
 #define PASS_ATTS(atts) (atts ? (const char **)(atts) : empty_atts)
Index: src/ne_dates.c
===================================================================
--- src/ne_dates.c	(révision 1019)
+++ src/ne_dates.c	(copie de travail)
@@ -56,10 +56,10 @@
 /* asctime: Wed Jun 30 21:49:08 1993 */
 #define ASCTIME_FORMAT "%3s %3s %2d %2d:%2d:%2d %4d"
 
-static const char *const rfc1123_weekdays[7] = { 
+static const char rfc1123_weekdays[7][4] = { 
     "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" 
 };
-static const char *const short_months[12] = { 
+static const char short_months[12][4] = { 
     "Jan", "Feb", "Mar", "Apr", "May", "Jun",
     "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
 };

Attachment: signature.asc
Description: Ceci est une partie de message numériquement signée

_______________________________________________
neon mailing list
[email protected]
http://mailman.webdav.org/mailman/listinfo/neon

Reply via email to