fc02eb6
Patch by Robert Scheck <robert@fedoraproject.org> for gnokii <= 0.6.31 to avoid
fc02eb6
build failures with GCC 5.x as "gnokii-0.6.31/xgnokii/xgnokii.c:1209: undefined
fc02eb6
reference to `GUI_HideAbout'" and "xgnokii-xgnokii_logos.o:(.data.rel+0xe0):
fc02eb6
undefined reference to `CloseLogosWindow'".
fc02eb6
fc02eb6
--- gnokii-0.6.31/xgnokii/xgnokii.c		2011-12-02 15:53:04.000000000 +0100
fc02eb6
+++ gnokii-0.6.31/xgnokii/xgnokii.c.gcc5	2015-06-20 15:49:59.000000000 +0200
fc02eb6
@@ -798,7 +798,7 @@
fc02eb6
 }
fc02eb6
 
fc02eb6
 
fc02eb6
-inline void GUI_HideAbout(void)
fc02eb6
+void GUI_HideAbout(void)
fc02eb6
 {
fc02eb6
 	gtk_widget_hide(AboutDialog);
fc02eb6
 }
fc02eb6
--- gnokii-0.6.31/xgnokii/xgnokii_logos.c	2011-12-02 15:53:04.000000000 +0100
fc02eb6
+++ gnokii-0.6.31/xgnokii/xgnokii_logos.c.gcc5	2015-06-20 15:50:15.000000000 +0200
fc02eb6
@@ -1304,7 +1304,7 @@
fc02eb6
 	return 0;
fc02eb6
 }
fc02eb6
 
fc02eb6
-inline void CloseLogosWindow(void)
fc02eb6
+void CloseLogosWindow(void)
fc02eb6
 {
fc02eb6
 	gtk_widget_hide(GUI_LogosWindow);
fc02eb6
 }