--- ./pan.desktop Sun Aug 31 09:32:06 2003 +++ ../pan-0.14.2/./pan.desktop Sat May 8 15:54:18 2004 @@ -10,7 +10,6 @@ Name[ja]=ニュースリーダ Pan Name[ko]=판, 뉴스리더 Name[lv]=Pan Jaunumlasītājs -Name[mk]=Pan читач на вести Name[nl]=Pan nieuwslezer Name[no]=Pan newsleser Name[pl]=Pan, czytnik nowin @@ -33,7 +32,6 @@ Comment[ja]=Usenet のニュースを読みます Comment[ko]=유스넷에서 뉴스 읽기 Comment[lv]=Lasīt Jaunumus no Usenet -Comment[mk]=Читав вести од Usenet Comment[nl]=Nieuws van Usenet lezen Comment[no]=Les nyheter fra Usenet Comment[pl]=Odczytuje nowiny z Usenetu --- ./pan/articlelist.c Wed Aug 6 21:42:52 2003 +++ ../pan-0.14.2/./pan/articlelist.c Sat May 8 15:53:33 2004 @@ -101,7 +101,7 @@ static HeaderPaneRenderer * _renderer = NULL; static GtkWidget * threads_popup_menu = NULL; static GtkItemFactory * threads_popup_factory = NULL; -static GtkItemFactoryEntry threads_popup_entries[]; +static GtkItemFactoryEntry threads_popup_entries[17]; static int threads_popup_entries_qty; static gboolean _articlelist_repopulating = FALSE; @@ -2492,7 +2492,7 @@ pan_action_do (action); } static int threads_popup_entries_qty = 17; -static GtkItemFactoryEntry threads_popup_entries[] = +static GtkItemFactoryEntry threads_popup_entries[17] = { /* r */ {N_("/_Read Article"), NULL, articlelist_read_selected, 0, NULL}, /* */ {N_("/---"), NULL, NULL, 0, ""}, --- ./pan/base/msort.c Mon Jun 18 11:33:38 2001 +++ ../pan-0.14.2/./pan/base/msort.c Sat May 8 15:51:03 2004 @@ -43,7 +43,9 @@ char *tmp; char *b1, *b2; size_t n1, n2; +#if !defined (__sgi) const int opsiz = sizeof(unsigned long int); +#endif if (n <= 1) return; @@ -58,6 +60,7 @@ tmp = t; +#if !defined (__sgi) if (s == opsiz && (b1 - (char *) 0) % opsiz == 0) /* operating on aligned words. Use direct word stores. */ while (n1 > 0 && n2 > 0) @@ -76,6 +79,7 @@ } } else +#endif while (n1 > 0 && n2 > 0) { if ((*cmp) (b1, b2) <= 0)