[Goodies-commits] r3607 - in xfce4-weather-plugin/trunk: . panel-plugin

Nick Schermer nick at xfce.org
Sun Nov 18 20:01:43 CET 2007


Author: nick
Date: 2007-11-18 19:01:43 +0000 (Sun, 18 Nov 2007)
New Revision: 3607

Modified:
   xfce4-weather-plugin/trunk/ChangeLog
   xfce4-weather-plugin/trunk/configure.in.in
   xfce4-weather-plugin/trunk/panel-plugin/weather-http.c
Log:
	* Fix includes for bsd users.
	* Bump version to 0.6.2 for release.

Modified: xfce4-weather-plugin/trunk/ChangeLog
===================================================================
--- xfce4-weather-plugin/trunk/ChangeLog	2007-11-18 14:50:48 UTC (rev 3606)
+++ xfce4-weather-plugin/trunk/ChangeLog	2007-11-18 19:01:43 UTC (rev 3607)
@@ -1,4 +1,9 @@
 2007-11-18	Nick Schermer <nick at xfce.org>
+
+	* Fix includes for bsd users.
+	* Bump version to 0.6.2 for release.
+
+2007-11-18	Nick Schermer <nick at xfce.org>
 	
 	* Post release bump, 0.6.2svn
 

Modified: xfce4-weather-plugin/trunk/configure.in.in
===================================================================
--- xfce4-weather-plugin/trunk/configure.in.in	2007-11-18 14:50:48 UTC (rev 3606)
+++ xfce4-weather-plugin/trunk/configure.in.in	2007-11-18 19:01:43 UTC (rev 3607)
@@ -13,7 +13,7 @@
 m4_define([weather_version_minor], [6])
 m4_define([weather_version_micro], [2])
 m4_define([weather_version_build], [r at REVISION@])
-m4_define([weather_version_tag], [svn])
+m4_define([weather_version_tag], [])
 m4_define([weather_version], [weather_version_major().weather_version_minor().weather_version_micro()ifelse(weather_version_tag(), [svn], [weather_version_tag()-weather_version_build()], [weather_version_tag()])])
 
 dnl ***************************
@@ -46,7 +46,7 @@
 AC_HEADER_STDC()
 AC_CHECK_HEADERS([string.h fcntl.h errno.h sys/socket.h netdb.h \
                   netinet/in.h sys/types.h time.h unistd.h stdio.h \
-                  sys/stat.h stddef.h stdlib.h])
+                  sys/stat.h stddef.h stdlib.h netinet/in.h])
 
 dnl ******************************
 dnl *** Check for i18n support ***

Modified: xfce4-weather-plugin/trunk/panel-plugin/weather-http.c
===================================================================
--- xfce4-weather-plugin/trunk/panel-plugin/weather-http.c	2007-11-18 14:50:48 UTC (rev 3606)
+++ xfce4-weather-plugin/trunk/panel-plugin/weather-http.c	2007-11-18 19:01:43 UTC (rev 3607)
@@ -21,14 +21,15 @@
 #include <config.h>
 #endif
 
+#include <sys/types.h>
 #include <sys/socket.h>
-#include <sys/types.h>
 #include <errno.h>
 #include <netdb.h>
 #include <fcntl.h>
 #include <string.h>
 #include <unistd.h>
 #include <stdlib.h>
+#include <netinet/in.h>
 
 #include <glib.h>
 #include <gtk/gtk.h>




More information about the Goodies-commits mailing list