evolution-data-server r8972 - in trunk: . libedataserver



Author: tml
Date: Thu Jun 12 20:01:40 2008
New Revision: 8972
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=8972&view=rev

Log:
2008-06-12  Tor Lillqvist  <tml novell com>

	* libedataserver/e-proxy.c: Make it compile on Win32, too.



Modified:
   trunk/ChangeLog
   trunk/libedataserver/e-proxy.c

Modified: trunk/libedataserver/e-proxy.c
==============================================================================
--- trunk/libedataserver/e-proxy.c	(original)
+++ trunk/libedataserver/e-proxy.c	Thu Jun 12 20:01:40 2008
@@ -26,10 +26,16 @@
 #include <config.h>
 #endif
 
-#include <netinet/in.h>
-#include <sys/socket.h>
 #include <string.h>
 #include <stdlib.h>
+
+#ifdef _WIN32
+#include <winsock2.h>
+#else
+#include <netinet/in.h>
+#include <sys/socket.h>
+#endif
+
 #include <glib.h>
 #include <glib-object.h>
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]