[PD-cvs] pd/src s_inter.c,1.5.4.10.2.22,1.5.4.10.2.23

Mathieu Bouchard matju at users.sourceforge.net
Thu Nov 23 22:08:22 CET 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10729

Modified Files:
      Tag: devel_0_39
	s_inter.c 
Log Message:
if SIGIOT is missing, replace by SIGABRT


Index: s_inter.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/s_inter.c,v
retrieving revision 1.5.4.10.2.22
retrieving revision 1.5.4.10.2.23
diff -C2 -d -r1.5.4.10.2.22 -r1.5.4.10.2.23
*** s_inter.c	23 Nov 2006 19:32:05 -0000	1.5.4.10.2.22
--- s_inter.c	23 Nov 2006 21:08:20 -0000	1.5.4.10.2.23
***************
*** 12,16 ****
  #include "m_imp.h"
  #include "g_canvas.h"   /* for GUI queueing stuff */
! #ifndef _WIN32
  #include <unistd.h>
  #include <sys/socket.h>
--- 12,16 ----
  #include "m_imp.h"
  #include "g_canvas.h"   /* for GUI queueing stuff */
! #ifdef UNISTD
  #include <unistd.h>
  #include <sys/socket.h>
***************
*** 26,30 ****
  #include <bstring.h>
  #endif
! #ifdef _WIN32
  #include <io.h>
  #include <fcntl.h>
--- 26,30 ----
  #include <bstring.h>
  #endif
! #if defined(_WIN32) && !defined(__CYGWIN__)
  #include <io.h>
  #include <fcntl.h>
***************
*** 46,49 ****
--- 46,53 ----
  #include <stdio.h>
  
+ #ifndef SIGIOT
+ #define SIGIOT SIGABRT
+ #endif
+ 
  #ifdef __APPLE__
  #include <sys/types.h>





More information about the Pd-cvs mailing list