From: Oliver O. <fr...@us...> - 2007-02-12 23:57:27
|
Update of /cvsroot/simspark/simspark/spark/utility/rcssnet In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15402 Modified Files: Tag: WIN32 socket.hpp Log Message: HAVE_SOCKET indicates already the presence of the socket function (and may be defined even without having a type SOCKET). I changed the conditional compile HAVE_SOCKET to HAVE_SOCKETTYPE. Index: socket.hpp =================================================================== RCS file: /cvsroot/simspark/simspark/spark/utility/rcssnet/socket.hpp,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** socket.hpp 9 Feb 2007 20:09:32 -0000 1.1.2.1 --- socket.hpp 12 Feb 2007 23:57:18 -0000 1.1.2.2 *************** *** 43,47 **** { public: ! #ifdef HAVE_SOCKET typedef SOCKET SocketDesc; #else --- 43,47 ---- { public: ! #ifdef HAVE_SOCKETTYPE typedef SOCKET SocketDesc; #else |