CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Jon Daniel <[EMAIL PROTECTED]> 05/08/17 22:03:47
Modified files:
src : network.cpp
Log message:
we have to define SOCKET for BeOS too
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/network.cpp.diff?tr1=1.77&tr2=1.78&r1=text&r2=text
Patches:
Index: wesnoth/src/network.cpp
diff -u wesnoth/src/network.cpp:1.77 wesnoth/src/network.cpp:1.78
--- wesnoth/src/network.cpp:1.77 Wed Aug 17 21:52:22 2005
+++ wesnoth/src/network.cpp Wed Aug 17 22:03:47 2005
@@ -1,4 +1,4 @@
-/* $Id: network.cpp,v 1.77 2005/08/17 21:52:22 j_daniel Exp $ */
+/* $Id: network.cpp,v 1.78 2005/08/17 22:03:47 j_daniel Exp $ */
/*
Copyright (C) 2003-5 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -35,10 +35,9 @@
#include <signal.h>
#if defined(_WIN32) || defined(__WIN32__) || defined (WIN32)
#include <windows.h>
-#elif defined(BEOS)
+#else
#include <sys/types.h>
#include <sys/socket.h>
-#else
#include <fcntl.h>
#define SOCKET int
#endif