has libglade been installed in the right place?? It should be under /usr but often configure scipts don't pick up on this and install to /usr/local. reinstall libglade with:
Code:
./configure --prefix=/usr
and just to make sure do the same with all other packages (I think the final problem is because libdvdcss is installed in the wrong place).
Also I'll give you a tip try using check install (
http://asic-linux.com.mx/~izto/checkinstall/), this tool performs the equivalent of "make install" but can creates a slackware package which makes uninstalling software a breeze. So instead of usual procedure:
Code:
tar -xzf foo.tar.gz
cd foo
./configure --prefix=/usr
make
checkinstall -S
(-S tells checkinstall to build a slackware package)