[PD-cvs] externals/mrpeach/net x_net_tcpreceive.c, 1.1, 1.2 x_net_tcpsend.c, 1.1, 1.2 x_net_udpreceive.c, 1.1, 1.2 x_net_udpsend.c, 1.1, 1.2

Hans-Christoph Steiner eighthave at users.sourceforge.net
Thu Aug 17 07:33:55 CEST 2006


Update of /cvsroot/pure-data/externals/mrpeach/net
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11259/mrpeach/net

Modified Files:
	x_net_tcpreceive.c x_net_tcpsend.c x_net_udpreceive.c 
	x_net_udpsend.c 
Log Message:
added mrpeach targets and added missing header to get things compiling on Mac OS X

Index: x_net_udpsend.c
===================================================================
RCS file: /cvsroot/pure-data/externals/mrpeach/net/x_net_udpsend.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** x_net_udpsend.c	16 Aug 2006 20:22:22 -0000	1.1
--- x_net_udpsend.c	17 Aug 2006 05:33:53 -0000	1.2
***************
*** 14,17 ****
--- 14,18 ----
  #include <winsock2.h>
  #else
+ #include <sys/types.h>
  #include <sys/socket.h>
  #include <netinet/in.h>

Index: x_net_tcpsend.c
===================================================================
RCS file: /cvsroot/pure-data/externals/mrpeach/net/x_net_tcpsend.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** x_net_tcpsend.c	16 Aug 2006 20:22:22 -0000	1.1
--- x_net_tcpsend.c	17 Aug 2006 05:33:53 -0000	1.2
***************
*** 12,15 ****
--- 12,16 ----
  #include <winsock2.h>
  #else
+ #include <sys/types.h>
  #include <sys/socket.h>
  #include <netinet/in.h>

Index: x_net_udpreceive.c
===================================================================
RCS file: /cvsroot/pure-data/externals/mrpeach/net/x_net_udpreceive.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** x_net_udpreceive.c	16 Aug 2006 20:22:22 -0000	1.1
--- x_net_udpreceive.c	17 Aug 2006 05:33:53 -0000	1.2
***************
*** 11,14 ****
--- 11,15 ----
  #include <ws2tcpip.h>
  #else
+ #include <sys/types.h>
  #include <sys/socket.h>
  #include <netinet/in.h>

Index: x_net_tcpreceive.c
===================================================================
RCS file: /cvsroot/pure-data/externals/mrpeach/net/x_net_tcpreceive.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** x_net_tcpreceive.c	16 Aug 2006 20:22:22 -0000	1.1
--- x_net_tcpreceive.c	17 Aug 2006 05:33:53 -0000	1.2
***************
*** 11,14 ****
--- 11,15 ----
  #include <ws2tcpip.h> /* for socklen_t */
  #else
+ #include <sys/types.h>
  #include <sys/socket.h>
  #include <netinet/in.h>





More information about the Pd-cvs mailing list