I'm working on setting up Rivendell on Ubuntu 10.04.2.
I needed to feed a shoutcast server with radio stream, and edcast, seemed to be the only option.
I got the sources of version 56 (?) from SVN, but I couldn't compile it.
After a lot of trying different things, I found out I have to modify one makefile for it to work...
Make sure you have Lame installed the latest version. I needed to compile Lame 3.99 from sources:
http://sourceforge.net/projects/lame/files/lame/3.99/
Then run ./autogen.sh in your edcast_jack directory. It will create a Makefile, which you need to modify (remove four characters).
Code: Select all
/edcast_jack/MakefileCode: Select all
LIBFLAC_LIBS = -lFLAC -logg -lm
Code: Select all
LIBS = -lpthread -logg -lvorbis -lmad -lmp3lame -lm -lvorbisenc -lvorbisfile -lfaac -lm -lFLAC -logg -lm -ljack -ldlSaved the file, then make and sudo make install did the job. Hell yeah!