<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div><br/>
Thanks SxDx, <br/></div><div>now it compiles without any errors - great. <br/></div><div>But all the old atari programs send only Midi time clock massages. I have check this with GMIDImonitor. What a Pity.<br/></div><div><br/></div><div><br/></div><div name="quote" style="margin:10px 5px 5px 10px; padding: 10px 0 10px 10px; border-left:2px solid #C3D9E5; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
    
    <div name="quoted-content">
        > cc -g -O2 -I/usr/include/alsa -I/usr/include/lash-1.0<br/>
> -L/usr/local/lib -L/usr/lib -ljack -lasound -lX11 -llash -o<br/>
> jackctlmmc main.o common.o<br/>
<br/>
try:<br/>
cc -g -O2 -I/usr/include/alsa -I/usr/include/lash-1.0 -o jackctlmmc main.o common.o -L/usr/local/lib -L/usr/lib -ljack -lasound -lX11 -llash<br/>
<br/>
ie. put the libs (-lXX) AFTER the .o of the link line.<br/>
Your .o refer to symbols in the .so files. The linker will<br/>
skip any symbol in a .so that is not used by a .o it already<br/>
processed. Since you give the .so BEFORE the .o the linker<br/>
discards everything.<br/>
Something like that. See man ld(1) around "--start-group".<br/>

    </div>
</div><div><br/><br/></div></div></body></html>