Hans Fugal

Results 12 comments of Hans Fugal

I'm pleasantly surprised it still compiles and runs! I took a look at the code and It looks like younger me was not handling clipping very gracefully (lines 89-96), so...

Glad to hear it. Thanks for following up

These linker errors probably just mean that the compilation command isn't correct. Specifically, check that "pkg-config --cflags --libs jack" returns something reasonable (looks like it should be doing at least...

No you're right, -lpcap needs to be separate - but indeed it's already there on the compilation line. Does jack2 use a different libname? Does it need to be -ljack2?...

Well the Makefile just gives -lpcap directly. And my libpcap.a has those symbols, e.g. $ nm /usr/lib/libpcap.a | grep pcap_setfilter 0000000000001720 t pcap_setfilter_linux 00000000000003a0 T pcap_setfilter So verify you have...

Use nm also to see if that jack symbol is in the jack library

You might try adding -L/usr/lib/i386-linux-gnu to the Makefile then. Sounds like maybe a 64-bit/32-bit issue.

I guess I don't understand why these libraries would be in /usr/lib/i386-linux-gnu instead of just /usr/lib. Find the answer to that and you probably find why the libraries aren't being...

You might want to bring it to the attention of whoever is responsible for that jack.pc file then - it may not be working as intended.

On 10/9/12 4:33 PM, charlieroberts wrote: > Yeah, I just looked through the code and it doesn't look like this does > anything under Android at the moment. Here's the...