hi,
i'm trying to compile iemmatrix-0.2 on osx. I run bootstrap and
./configure --with-pd=/Applications/Pd-extended.app/Contents/Resources/
followed by make, which gives
mtx_dispersive_dline.c:144:8: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static allpass_chain_cycle (t_float x, t_float *y, t_float *z, int n, t_float a) {
mtx_dispersive_dline.c:154:1: warning: control reaches end of non-void function [-Wreturn-type]
mtx_dispersive_dline.c:156:8: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static mtx_dispersive_dline_matrix(t_mtx_dispersive_dline *x, t_symbol *s,
mtx_dispersive_dline.c:166:6: error: non-void function 'mtx_dispersive_dline_matrix' should return a value
[-Wreturn-type]
return;
Additionally, is there a GUI library for representing an n x n matrix in the style of toggles, or should I build that myself? I'd rather not make arbitrary matrices from bangs or toggles.