Re: [PD-dev] compiling pd-extended for ubuntu 9.10

2009-10-31 Thread Hans-Christoph Steiner
My fault, 'bool' is typedef'ed not #define'ed so you can't test it with a #ifndef. I just discovered all this stuff is in the standard C99 header stdbool.h anyhow. 'svn up' externals/pdp/include' and try again. .hc On Oct 31, 2009, at 5:46 AM, patrick wrote: hi, i have this error

Re: [PD-dev] compiling pd-extended for ubuntu 9.10

2009-10-31 Thread patrick
oups, sorry (same report as olsen)... fixed with: pd/externals/pdp/opengl/include/pdp_texture.h - bool pdp_packet_texture_isvalid(int packet); + int pdp_packet_texture_isvalid(int packet); pat ___ Pd-dev mailing list Pd-dev@iem.at

Re: [PD-dev] compiling pd-extended for ubuntu 9.10

2009-10-31 Thread Hans-Christoph Steiner
Thanks. Fixed in svn, commit 12709. .hc On Oct 31, 2009, at 5:15 PM, patrick wrote: oups, sorry (same report as olsen)... fixed with: pd/externals/pdp/opengl/include/pdp_texture.h - bool pdp_packet_texture_isvalid(int packet); + int pdp_packet_texture_isvalid(int packet); pat