From: Matt K. <ra...@ch...> - 2004-03-25 15:27:19
|
> > Well, I took the plunge and added portmidi to the repository. I made > no attempt to make it compile along with the rest of the system. If > anyone wants another concrete task to perform, making it compile > certainly is one. > > Patrick I grabbed this, and it didn't quite compile. I had to make the following change to make it all work. Note that this isn't stitched into the main make flow -- it just makes it compile: warp>> cvs -z3 -d:pserver:ano...@cv...:/cvsroot/jazzplusplus diff Makefile Index: Makefile =================================================================== RCS file: /cvsroot/jazzplusplus/jazz/portmidi/Makefile,v retrieving revision 1.1.1.1 diff -r1.1.1.1 Makefile 47,48c47,48 < pm_test/latency: Makefile $(ptlib) pm_test/latency.o < $(CC) pm_test/latency.c -o pm_test/latency $(ptlib) -lpthread -lm --- > pm_test/latency: Makefile $(ptlib) $(pmlib) pm_test/latency.o > $(CC) pm_test/latency.c -o pm_test/latency $(ptlib) $(pmlib) $(ALSALIB) -lpthread -lm Matt |