diff stream/stream.c @ 27472:c0b233cd30ca

Revert moving closesocket definition and network headers to network.h. This caused lots of trouble on MinGW, we need a different solution.
author diego
date Sun, 31 Aug 2008 13:59:54 +0000
parents be85aae103f2
children ae5da477539e
line wrap: on
line diff
--- a/stream/stream.c	Sun Aug 31 13:56:18 2008 +0000
+++ b/stream/stream.c	Sun Aug 31 13:59:54 2008 +0000
@@ -13,10 +13,17 @@
 #include <strings.h>
 
 #include "config.h"
+
+#ifndef HAVE_WINSOCK2_H
+#define closesocket close
+#else
+#include <winsock2.h>
+#endif
+
 #include "mp_msg.h"
 #include "help_mp.h"
 #include "osdep/shmem.h"
-#include "network.h"
+
 #include "stream.h"
 #include "libmpdemux/demuxer.h"