Background
I recently came across the fuppes UPnP media server and it seemed great. I installed it on my home server and started using it to stream video to my XBox. It worked really really well and I was happy with it. Then I upgraded my servers distribution and fuppes stopped working; I now know that it's because various libraries have depreciated, most specifically debian has started dropping the .la libtool files from the majority of their packages.
The Problem / Question
So my question is, how do I build fuppes now that I don't have those .la files for libtool? More specifically, this is my exact error message:
/bin/sed: can't read /usr/lib/libogg.la: No such file or directory
libtool: link: `/usr/lib/libogg.la' is not a valid libtool archive
I don't have a /usr/lib/libogg.la file anymore. This proves it from the terminal:
# dpkg -L libogg-dev | grep "a$"
/usr/lib/libogg.a
#
I just need to be pointed in the right direction really. I've read the libtool-automake docs but I'm still missing that piece of information that tells me how to compile now that I don't have libogg.la anymore. So in short, how do I compile in the absence of .la files?
N.B. This is all on Ubuntu Karmic Koala