Hi Fons,
On Jan 10, 2009, at 12:33 PM, Fons Adriaensen wrote:
On Fri, Jan 09, 2009 at 04:13:04PM -0800, Sean Bolton
wrote:
Announcing the DSSI Soft Synth Interface version
1.0 release:
Installed dssi-1.0.0, then tried ghostess-20081213, but
compiling this produces:
ghostess_universal_gui-universal_gui.o: In function
`update_for_sample_rate':
/home/fons/build/ghostess-20081213/src/universal_gui.c:613:
undefined reference to `gtk_adjustment_set_lower'
/home/fons/build/ghostess-20081213/src/universal_gui.c:614:
undefined reference to `gtk_adjustment_set_upper'
Any hints ?
Oops, ya, ghostess 20081213 is a little premature. You can:
- upgrade to GTK+ 2.14
- replace those two lines with:
GTK_ADJUSTMENT(port_data[port].adjustment)->lower = plb;
GTK_ADJUSTMENT(port_data[port].adjustment)->upper = pub;
gtk_adjustment_changed(GTK_ADJUSTMENT(port_data
[port].adjustment));
or
- wait for a newer ghostess release in a week or so.
Thanks,
-Sean