1mb-applet-wireless: fix undefined reference to `log' and `lrint' 2 3mb-applet-wireless.o: In function `update_wireless': 4.. matchbox-panel-0.9.3/applets/mb-applet-wireless.c:143: undefined reference to `log' 5.. matchbox-panel-0.9.3/applets/mb-applet-wireless.c:143: undefined reference to `lrint' 6 7Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com> 8Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> 9[arnout: add description and Signed-off-by] 10--- 11diff -rup matchbox-panel-0.9.3.orig/applets/Makefile.in matchbox-panel-0.9.3/applets/Makefile.in 12--- matchbox-panel-0.9.3.orig/applets/Makefile.in 2015-01-23 00:16:47.594850985 +0100 13+++ matchbox-panel-0.9.3/applets/Makefile.in 2015-01-23 00:15:18.458694947 +0100 14@@ -198,7 +198,7 @@ WANT_SMALL_ICONS_FALSE = @WANT_SMALL_ICO 15 WANT_SMALL_ICONS_TRUE = @WANT_SMALL_ICONS_TRUE@ 16 WANT_WIFI_FALSE = @WANT_WIFI_FALSE@ 17 WANT_WIFI_TRUE = @WANT_WIFI_TRUE@ 18-WIRELESS_LIBS = @WIRELESS_LIBS@ 19+WIRELESS_LIBS = @WIRELESS_LIBS@ -lm 20 XGETTEXT = @XGETTEXT@ 21 ac_ct_CC = @ac_ct_CC@ 22 ac_ct_STRIP = @ac_ct_STRIP@ 23diff -rup matchbox-panel-0.9.3.orig/applets/mb-applet-wireless.c matchbox-panel-0.9.3/applets/mb-applet-wireless.c 24--- matchbox-panel-0.9.3.orig/applets/mb-applet-wireless.c 2015-01-23 00:16:31.531822865 +0100 25+++ matchbox-panel-0.9.3/applets/mb-applet-wireless.c 2015-01-23 00:03:43.067563827 +0100 26@@ -50,6 +50,8 @@ 27 28 #endif 29 30+#include <math.h> 31+ 32 #ifdef MB_HAVE_PNG 33 #define IMG_EXT "png" 34 #else 35