Hello, When trying to run jack, I got the following error:
jackd: error in loading shared libraries: jackd: undefined symbol: mknod This was easily solved adding #include <unistd.h> in engine.c Also, to compile the fltk client, I had to change the order of arguments: move the object file to the front, changing c++ -g -Wall -D_REENTRANT -I/usr/include/glib-1.2 -I/usr/lib/glib/include -o jack_fltk_client -L. -L/usr/X11R6/lib -lfltk -lX11 -lXext -ljack -lltdl -lpthread fltk_client.o -L/usr/lib -lglib to: c++ -g -Wall -D_REENTRANT fltk_client.o -I/usr/include/glib-1.2 -I/usr/lib/glib/include -o jack_fltk_client -L. -L/usr/X11R6/lib -lfltk -lX11 -lXext -ljack -lltdl -lpthread -L/usr/lib -lglib Maarten
