diff options
Diffstat (limited to 'clock-network.patch')
-rw-r--r-- | clock-network.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/clock-network.patch b/clock-network.patch new file mode 100644 index 0000000..db88b82 --- /dev/null +++ b/clock-network.patch @@ -0,0 +1,22 @@ +diff -up gnome-panel-2.26.1/applets/clock/clock-location.c.network gnome-panel-2.26.1/applets/clock/clock-location.c +--- gnome-panel-2.26.1/applets/clock/clock-location.c.network 2009-04-15 17:28:26.760634154 -0400 ++++ gnome-panel-2.26.1/applets/clock/clock-location.c 2009-04-15 17:43:41.869383882 -0400 +@@ -12,6 +12,9 @@ + #include <time.h> + #include <unistd.h> + #include <math.h> ++#include <netinet/in.h> ++#include <arpa/nameser.h> ++#include <resolv.h> + + #include <glib.h> + #include <gio/gio.h> +@@ -695,6 +698,8 @@ state_notify (DBusPendingCall *pending, + DBUS_TYPE_UINT32, &result, + DBUS_TYPE_INVALID)) { + if (result == NM_STATE_CONNECTED) { ++ /* thank you, glibc */ ++ res_init (); + update_weather_infos (); + } + } |