http://bugs.winehq.org/show_bug.cgi?id=24643
Summary: OpenGL.dll is not build on VirtualBox host system with Guest Additions Product: Wine Version: 1.3.4 Platform: x86 OS/Version: Solaris Status: UNCONFIRMED Severity: normal Priority: P2 Component: build-env AssignedTo: wine-bugs@winehq.org ReportedBy: petr.sumbera@oracle.com
checking for up-to-date OpenGL version... yes -... not found checking for -lGL... (cached) not found checking for -lGLU... libGLU.so.1 ..
configure: WARNING: No OpenGL library found on this system. OpenGL and Direct3D won't be supported.
--
Problem is that configure script expects conftest to be linked with:
libGL.so.1 => /usr/lib/libGL.so.1
Where on Virtualbox host with Guest Additions it's linked with:
VBoxOGL.so => /usr/lib/VBoxOGL.so
Configure script should be probably changed like this:
8743c8743 < *) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` ;; ---
*) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest$ac_exeext | egrep "libGL\\.$LIBEXT|VBoxOGL\\.$LIBEXT" | sed -e "s/^.*\(libGL\.$LIBEXT[^ ]*\).*$/\1/"';2,$d'` ;;
8782c8782 < *) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest$ac_exeext | grep "libGL\.$LIBEXT" | sed -e "s/^.*(libGL.$LIBEXT[^ ]*).*$/\1/"';2,$d'` ;; ---
*) ac_cv_lib_soname_GL=`$ac_cv_path_LDD conftest$ac_exeext | grep "libGL\\.$LIBEXT|VBoxOGL\\.$LIBEX" | sed -e "s/^.*\(libGL\.$LIBEXT[^ ]*\).*$/\1/"';2,$d'` ;;
--
configure would proceed then like this:
checking for GL/gl.h... yes checking for GL/glx.h... yes checking for GL/glu.h... yes checking for up-to-date OpenGL version... yes checking for -lGL... VBoxOGL.so => /usr/lib/VBoxOGL.so checking for -lGLU... libGLU.so.1
http://bugs.winehq.org/show_bug.cgi?id=24643
--- Comment #1 from Alexandre Julliard julliard@winehq.org 2010-10-06 07:17:43 CDT --- I don't see the point of breaking compatibility like that. Why can't you name it libGL?
http://bugs.winehq.org/show_bug.cgi?id=24643
--- Comment #2 from Petr Sumbera petr.sumbera@oracle.com 2010-10-06 07:20:28 CDT --- (In reply to comment #1)
I don't see the point of breaking compatibility like that. Why can't you name it libGL?
This is definitely good question for VirtualBox team. Not me. I'm just poor Solaris/VirtualBox/Wine user...
http://bugs.winehq.org/show_bug.cgi?id=24643
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID
--- Comment #3 from Alexandre Julliard julliard@winehq.org 2010-10-06 07:21:06 CDT --- You should file a bug with VirtualBox then.
http://bugs.winehq.org/show_bug.cgi?id=24643
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #4 from Dmitry Timoshkov dmitry@codeweavers.com 2010-10-06 07:28:45 CDT --- Closing invalid.