Hi again,
And I just noticed that xsample 2.4 fails with this while 2.3 compiles
fine...
g++ -c -O6 -funroll-loops -fmove-all-movables -frerun-loop-opt -finline-func tions -DPD -I/usr/local/lib/pd/src -I/usr/local/lib/pd/flext main.cpp -o ../pd-linux/main.o
main.cpp: In function `void lib_setup()': main.cpp:21: `xrecord' undeclared (first use this function) main.cpp:21: (Each undeclared identifier is reported only once for each function it appears in.) main.cpp:21: `FLEXT_TILDE_SETUP' undeclared (first use this function) main.cpp:22: `xplay' undeclared (first use this function) main.cpp:23: `xgroove' undeclared (first use this function) make: *** [../pd-linux/main.o] Error 1
this seems to have the same reason.... i changed all *_TILDE_* notions in flext to *_DSP_* and forgot to add a compatibility definition for that one..... so: Try to change all the FLEXT_TILDE_SETUP in main.cpp to FLEXT_DSP_SETUP
flext is changing a lot these days and keeping all those packages up to date is often not that easy.....
all the best, Thomas