head 1.1; access; symbols OPENPKG_E1_MP_HEAD:1.1 OPENPKG_E1_MP:1.1 OPENPKG_E1_MP_2_STABLE:1.1 OPENPKG_E1_FP:1.1 OPENPKG_2_STABLE_MP:1.1 OPENPKG_2_STABLE_20061018:1.1 OPENPKG_2_STABLE_20060622:1.1 OPENPKG_2_STABLE:1.1.0.4 OPENPKG_2_STABLE_BP:1.1 OPENPKG_2_5_RELEASE:1.1.2.1 OPENPKG_2_5_SOLID:1.1.0.2; locks; strict; comment @# @; 1.1 date 2005.10.14.19.14.42; author rse; state Exp; branches 1.1.2.1; next ; 1.1.2.1 date 2005.10.14.19.15.21; author rse; state Exp; branches; next ; desc @@ 1.1 log @fix building under FreeBSD/amd64 and similar different platforms @ text @Index: src/ui_draw.c --- src/ui_draw.c.orig 2003-11-16 17:15:36 +0100 +++ src/ui_draw.c 2005-10-14 21:12:03 +0200 @@@@ -83,7 +83,7 @@@@ g_free(s); } -G_INLINE_FUNC int selection_color(int selected, int color) +static int selection_color(int selected, int color) { if (INVERT_SEL) return selected ? COLOR_PAIR(color) | A_REVERSE : COLOR_PAIR(color); @@@@ -91,7 +91,7 @@@@ return selected ? COLOR_PAIR(COLOR_SELECTION) | A_BOLD : COLOR_PAIR(color); } -G_INLINE_FUNC int selection_color_special(int selected, int color) +static int selection_color_special(int selected, int color) { if (INVERT_SEL) return selected ? COLOR_PAIR(color) | A_REVERSE : COLOR_PAIR(color); Index: src/xcommon.c --- src/xcommon.c.orig 2003-06-30 14:31:03 +0200 +++ src/xcommon.c 2005-10-14 21:12:33 +0200 @@@@ -38,7 +38,7 @@@@ #include "xcommon.h" -G_INLINE_FUNC int xconnect_unix(const char *hostname, const char *path) +static int xconnect_unix(const char *hostname, const char *path) { #ifdef AF_UNIX int sock; @@@@ -64,7 +64,7 @@@@ #endif } -G_INLINE_FUNC int xconnect_ip(const char *hostname, const char *port) +static int xconnect_ip(const char *hostname, const char *port) { int sock; @ 1.1.2.1 log @MFC: fix building under FreeBSD/amd64 and similar different platforms @ text @@