Thanks Dan, I tried editing the file as you suggested, doing a make clean and make. (see attached) but no luck so far. Best regards, Nick
nick$ make
mkdir objs
c++ -c -o objs/FifoVideoFrames.o src/FifoVideoFrames.cpp -I./ -I/sw/include -I/sw/include/gavl -I/sw/include/gmerlin -I/Applications/Pd.app/Contents/Resources/src/ -I/sw/include -fast -fPIC
clang: warning: argument unused during compilation: '-fast' [-Wunused-command-line-argument]
c++ -c -o objs/FifoAudioFrames.o src/FifoAudioFrames.cpp -I./ -I/sw/include -I/sw/include/gavl -I/sw/include/gmerlin -I/Applications/Pd.app/Contents/Resources/src/ -I/sw/include -fast -fPIC
clang: warning: argument unused during compilation: '-fast' [-Wunused-command-line-argument]
c++ -c -o objs/ReadMedia.o src/ReadMedia.cpp -I./ -I/sw/include -I/sw/include/gavl -I/sw/include/gmerlin -I/Applications/Pd.app/Contents/Resources/src/ -I/sw/include -fast -fPIC
clang: warning: argument unused during compilation: '-fast' [-Wunused-command-line-argument]
c++ -o readanysf~.pd_darwin -I./ -I/sw/include -I/sw/include/gavl -I/sw/include/gmerlin -I/Applications/Pd.app/Contents/Resources/src/ -I/sw/include -fast -fPIC \
src/readanysf~.cpp \
objs/FifoAudioFrames.o \
objs/FifoVideoFrames.o \
objs/ReadMedia.o \
-bundle -undefined dynamic_lookup -L/sw/lib -lgavl -lgmerlin_avdec -L/usr/local/opt/libpng/lib
src/readanysf~.cpp:227:18: error: cannot initialize a parameter of type 'char *' with an rvalue of type
'const char *'
x->rm->openFile((const char*)s->s_name, 0, x->num_frames_in_fifo, x->num_samples_per_frame );
^~~~~~~~~~~~~~~~~~~~~~
src/ReadMedia.h:59:25: note: passing argument to parameter 'filename' here
void openFile( char * filename, int vfifosize, int afifosize, int samples_per_frame);
^
1 error generated.
make: *** [pd_darwin] Error 1