![]() |
|
HQ OpenGL HW (GPU) upscalers from Bobo1on1? - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Development (/forumdisplay.php?fid=93) +--- Thread: HQ OpenGL HW (GPU) upscalers from Bobo1on1? (/showthread.php?tid=67486) |
- dinozzo - 2010-03-23 19:13 Sorry for my ignorance but how can i get that on my system? Ive been searching the forums and found "sudo apt-get install python-opengl" and "python-gtkglexit1" because apparently when it installs it will also install opengl if it is not already present because it is a dependency, but still have the same problem. I used the xbmc installer script found here http://forum.xbmc.org/showthread.php?tid=69753 to install the nvidia drivers could this be the problem? Thanks for the help bobo1on1. - bobo1on1 - 2010-03-23 19:44 The nvidia drivers provide libgl. - Kali - 2010-03-23 19:47 check simlink ls -la /usr/lib/libGL.so - dinozzo - 2010-03-23 20:26 Hi Kali, I typed that command and it returned this: root@ubuntu:~# ls -la /usr/lib/libGL.so lrwxrwxrwx 1 root root 27 2010-03-04 09:20 /usr/lib/libGL.so -> /usr/lib/libGL.so.195.36.03 root@ubuntu:~# hmm, in /usr/lib/ there is a libGL.so.1 file but no libGL.so file afaik I just tried removing and installing the nvidia drivers using envy and the problem remains
- Kali - 2010-03-23 21:25 195.36.03 correct? post the output of ls -la /usr/lib/libGL.so* - dinozzo - 2010-03-23 21:47 root@ubuntu:~# ls -la /usr/lib/libGL.so* lrwxrwxrwx 1 root root 27 2010-03-04 09:20 /usr/lib/libGL.so -> /usr/lib/libGL.so.195.36.03 lrwxrwxrwx 1 root root 18 2010-03-23 18:56 /usr/lib/libGL.so.1 -> libGL.so.195.36.15 -rw-r--r-- 1 root root 742880 2010-03-16 03:14 /usr/lib/libGL.so.195.36.15 - Kali - 2010-03-23 22:03 wrong simlink, Nvidia Vdpau Team PPA ? fix: ln -fs /usr/lib/libGL.so.195.36.15 /usr/lib/libGL.so - dinozzo - 2010-03-23 23:11 well theres good news and bad news! Thanks kali you fixed the lGL issue. I did what you said and then ran the ls -la /usr/lib/libGL.so* command again. The first line that was red is now cyan so I ran ./configure --prefix=/usr again and we have success!checking for main in -lGL... yes now the bad news ![]() checking for main in -lGLEW... no Aaaaarghhhh! Does this help? root@ubuntu:~# ls -la /usr/lib/libGL* lrwxrwxrwx 1 root root 22 2010-03-23 18:56 /usr/lib/libGLcore.so.1 -> libGLcore.so.195.36.15 -rw-r--r-- 1 root root 23085696 2010-03-16 03:14 /usr/lib/libGLcore.so.195.36.15 lrwxrwxrwx 1 root root 16 2010-03-04 09:18 /usr/lib/libGLEW.so.1.5 -> libGLEW.so.1.5.1 -rw-r--r-- 1 root root 267532 2009-06-05 21:59 /usr/lib/libGLEW.so.1.5.1 lrwxrwxrwx 1 root root 27 2010-03-23 20:19 /usr/lib/libGL.so -> /usr/lib/libGL.so.195.36.15 lrwxrwxrwx 1 root root 18 2010-03-23 18:56 /usr/lib/libGL.so.1 -> libGL.so.195.36.15 -rw-r--r-- 1 root root 742880 2010-03-16 03:14 /usr/lib/libGL.so.195.36.15 lrwxrwxrwx 1 root root 20 2010-03-04 09:18 /usr/lib/libGLU.so.1 -> libGLU.so.1.3.070600 -rw-r--r-- 1 root root 456380 2009-10-13 23:08 /usr/lib/libGLU.so.1.3.070600 No red parts here Is there an easy fix for this as I can see this happening over and over again with different libraries and me posting here asking how to fix each one. Is there anyway to remove everything and install it the right way? - Kali - 2010-03-24 01:01 install libglew1.5-dev - bobo1on1 - 2010-03-24 01:41 You know the README.ubuntu has that aptitude line right? |