[PD-cvs] externals/ggee/control shell.c,1.10,1.11

Hans-Christoph Steiner eighthave at users.sourceforge.net
Thu May 25 21:42:08 CEST 2006


Update of /cvsroot/pure-data/externals/ggee/control
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5451

Modified Files:
	shell.c 
Log Message:
ifdef'ed so it doesn't get compiled on Windows, since it doesn't compile anyway

Index: shell.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ggee/control/shell.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** shell.c	28 Feb 2006 09:31:48 -0000	1.10
--- shell.c	25 May 2006 19:42:05 -0000	1.11
***************
*** 1,9 ****
  /* (C) Guenter Geiger <geiger at epy.co.at> */
  
  #include <m_pd.h>
- #ifdef _MSC_VER
- #pragma warning( disable : 4244 )
- #pragma warning( disable : 4305 )
- #endif
  
  #include <unistd.h>
--- 1,8 ----
  /* (C) Guenter Geiger <geiger at epy.co.at> */
  
+ /* this doesn't run on Windows (yet?) */
+ #ifndef _WIN32
+ 
  #include <m_pd.h>
  
  #include <unistd.h>
***************
*** 311,312 ****
--- 310,314 ----
  
  
+ #endif /* _WIN32 */
+ 
+ 





More information about the Pd-cvs mailing list