[PD-dev] mrpeach external fails to build on OS X 10.5

2008-03-19 Thread bsoisoi
Hi Devs, I have a working setup for pd-extended on 10.5. Pd-extended fails to build when the mrpeach externals are set in LIB_TARGETS. Here is what I see: cc -DPD -march=pentium4 -msse2 -mfpmath=sse -ftree-vectorize -ftree- vectorizer-verbose=2

Re: [PD-dev] mrpeach external fails to build on OS X 10.5

2008-03-19 Thread Martin Peach
I guess it's the line: tcpserver.c:89: error: syntax error before ‘u_long’ which indicates that the compiler doesn't know what a u_long is. You could try uncommenting line 34: //#include sys/types.h or setting it to #include types.h Martin bsoisoi wrote: Hi Devs, I have a working setup for

Re: [PD-dev] mrpeach external fails to build on OS X 10.5

2008-03-19 Thread Hans-Christoph Steiner
Strange error. Which version of Pd are you building against? 40? 41? .hc On Mar 19, 2008, at 4:03 PM, bsoisoi wrote: Hi Devs, I have a working setup for pd-extended on 10.5. Pd-extended fails to build when the mrpeach externals are set in LIB_TARGETS. Here is what I see: cc -DPD

Re: [PD-dev] mrpeach external fails to build on OS X 10.5

2008-03-19 Thread Brandon Zeeb
HEAD (revision 9604) in svn, pd 0.41.4. On Mar 19, 2008, at 4:34 PM, Hans-Christoph Steiner wrote: Strange error. Which version of Pd are you building against? 40? 41? .hc On Mar 19, 2008, at 4:03 PM, bsoisoi wrote: Hi Devs, I have a working setup for pd-extended on 10.5.

Re: [PD-dev] mrpeach external fails to build on OS X 10.5

2008-03-19 Thread Brandon Zeeb
Uncommenting line 34, #include sys/types.h did the trick, it'll build now. Thanks! On Mar 19, 2008, at 4:19 PM, Martin Peach wrote: I guess it's the line: tcpserver.c:89: error: syntax error before ‘u_long’ which indicates that the compiler doesn't know what a u_long is. You could try