hey
i'm getting a bunch of issues compiling pd from cvs for windows using mingw32. i've followed the instructions at https://puredata.org/docs/developer/mingw
and am now up to the 'make' stage. just running 'make' gives me errors related to being unable to find sys/socket.h. so i add -DMSW to MORECFLAGS in the makefile, which fixes that, but gives me
s_file.c:33: error: initializer element is not constant
instead. s_file.c line 33 is:
t_symbol *sys_flags = &s_;
.. help?
On Thu, 27 Apr 2006, Damian Stewart wrote:
s_file.c:33: error: initializer element is not constant instead. s_file.c line 33 is: t_symbol *sys_flags = &s_;
i don't know, try this instead:
t_symbol * const sys_flags = &s_;
but maybe it complains that &s_ might not be a constant value, and then I have no clue what to try.
Well, GNU C Compiler doesn't give me any kind of error or warnings even with "-ansi -pedantic -Wall".
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801 - http://artengine.ca/matju | Freelance Digital Arts Engineer, Montréal QC Canada