Update of /cvsroot/pure-data/externals/unauthorized/sonogram~ In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6489
Modified Files: sonogram~-joge.c sonogram~-yves.c Log Message: these don't compile MinGW (yet?)
Index: sonogram~-yves.c =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/sonogram~/sonogram~-yves.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** sonogram~-yves.c 18 Dec 2005 18:55:12 -0000 1.8 --- sonogram~-yves.c 7 Apr 2006 02:03:44 -0000 1.9 *************** *** 30,33 **** --- 30,35 ----
+ /* this doesn't compile on MinGW */ + #ifndef _WIN32
#include <sys/types.h> *************** *** 2011,2012 **** --- 2013,2016 ---- class_addmethod(sonogram_class, (t_method)sonogram_undo, gensym("undo"), A_NULL); } + + #endif /* not _WIN32 */
Index: sonogram~-joge.c =================================================================== RCS file: /cvsroot/pure-data/externals/unauthorized/sonogram~/sonogram~-joge.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** sonogram~-joge.c 18 Dec 2005 18:55:09 -0000 1.7 --- sonogram~-joge.c 7 Apr 2006 02:03:44 -0000 1.8 *************** *** 29,33 **** /* ---------------------------------------------------------------------------- */
!
#include <sys/types.h> --- 29,34 ---- /* ---------------------------------------------------------------------------- */
! /* this doesn't compile on MinGW */ ! #ifndef _WIN32
#include <sys/types.h> *************** *** 2038,2039 **** --- 2039,2043 ---- class_addmethod(sonogram_class, (t_method)sonogram_undo, gensym("undo"), A_NULL); } + + + #endif /* not _WIN32 */