hi,
i have this error when compiling pd-extended for ubuntu 9.10:
make -C /home/psc/src/pd/externals/gem2pdp
make[3]: Entering directory `/home/psc/src/pd/externals/gem2pdp'
g++ -fPIC -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math -Wall
-W -Wno-unused -Wno-parentheses -Wno-switch
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
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
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