+++ Andrew Atkinson [2010-06-07 15:25 +0100]: > Doubt everyone needs to see this, so gone private
>> Appears twice where? In the menus? > > In Synaptic, as shown in the previous screen shot Ah. OK. missed screenshot. Will look. >> That could well be the case. Building loaclly from source will install >> versions in /usr/local/bin. > > I think from the longer error file I got I did not install. The output > was cut and past after using make > > (the short version that you said contained no error was from > make > output.txt > Why did that not capture all the text?) Because that only captures stdout (standard output). Errors go to stderr. So you need to do: make 2>&1 > output.txt to get both. > make -C ./loch > make[1]: Entering directory `/usr/local/src/therion/loch' > gcc -c -Wall -D_GNU_SOURCE -DLOCH -DLXLINUX > -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 > -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread -O2 -o lxR2P.o > lxR2P.c > lxR2P.c:3:19: error: GL/gl.h: No such file or directory > lxR2P.c:5:20: error: GL/glx.h: No such file or directory opengl headers missing. Either not installed on not specified in build command line. Building from source means you just have to 'know' which debian packages you need install to build it. Wookey -- Principal hats: Emdebian, Wookware, Balloonboard http://wookware.org/
