Created attachment 330488 [details] Build Log Recently the wine-ebuild (tested several versions but 'urgent' is basically only the latest one) fails to find opengl on my system and thus won't compile. In some of the first "ebuild-stages" it seems to find opengl (configure states 'checking for -lGL... libGL.so.1'; see build.log) but in a later stage it eventually fails on the exact same check ('checking for -lGL... not found'). I tried to reset the opengl-settings with eselect but that didn't help. I also checked some tools like glxinfo - whose output seems to be ok (direct rendering: yes, OpenGL renderer: Mesa, ...). Finally I re-emerged mesa but that also didn't help. So, any Ideas what might be wrong?
Created attachment 330490 [details] emerge --info
Created attachment 330492 [details] emerge -pqv
Created attachment 330494 [details] environment
Created attachment 330496 [details] glxinfo output (because I mentioned it in the bug)
The checks that succeed are for 64bit libs, which are used only by wine64, which is likely of little use. Those that fail are for 32 libs, so you need to looks at emul-linux-* packages. Though on generic note, relevant config.log could have been useful.
Created attachment 330500 [details] config.log for win32
(In reply to comment #5) > The checks that succeed are for 64bit libs, which are used only by wine64, > which is likely of little use. > Those that fail are for 32 libs, so you need to looks at emul-linux-* > packages. > > Though on generic note, relevant config.log could have been useful. ok, app-emulation/emul-linux-x86-opengl is emerged, but I'll check this as soon as the system is finished updating. I also added the config.log for win32
(In reply to comment #7) This is the actual error: > /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/../../../../lib32/libGL.so: undefined reference to `xcb_glx_create_context_attribs_arb_checked' > /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/../../../../lib32/libGL.so: undefined reference to `_XGetRequest' > /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/../../../../lib32/libGL.so: undefined reference to `xcb_glx_set_client_info_2arb' > /usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/../../../../lib32/libGL.so: undefined reference to `xcb_glx_set_client_info_arb' In other words, your 32-bit opengl library can't find an appropriate 32-bit copy of libxcb. Which could mean: 1. you had installed some 32-bit system libraries by hand or from an overlay, and they are broken; or 2. you installed a version of emul-linux-x86-opengl which is incompatible with your version of emul-linux-x86-xlibs. That could happen if, for example, you are using stable keywords ("amd64") for one and unstable keywords ("~amd64") for the other. [Be aware that mixing stabilization levels, e.g. having ACCEPT_KEYWORDS=amd64 in your make.conf and then setting ~amd64 for individual packages, gets basically no testing or support from Gentoo developers. If you on your own don't know enough about your packages to determine which stable and unstable versions can be safely mixed together, then don't do it.]
(In reply to comment #8) > > 2. you installed a version of emul-linux-x86-opengl which is incompatible > with your version of emul-linux-x86-xlibs. That could happen if, for > example, you are using stable keywords ("amd64") for one and unstable > keywords ("~amd64") for the other. > figured as much after the hint of Rafał, but couldn't test it right away because of a running update :) nevertheless, thanks for your advice.