Huw Davies wrote:
On Tue, Jun 19, 2007 at 06:06:45PM +0200, Paul Vriens wrote:
Hi,
I'm a total newbie to the 64-bit world (just built a system this weekend) and now I'm trying to get Wine compiled.
It fails with (the first failure that is):
LD_LIBRARY_PATH="../../libs/wine:$LD_LIBRARY_PATH" ../../tools/wrc/wrc --nostdinc -I. -I. -I../../include -I../../include -D__WINESRC__ -foversion.res version.rc ../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./opengl32.spec opengl_ext.o opengl_norm.o wgl.o version.res -o opengl32.dll.so -luser32 -lgdi32 -ladvapi32 -lkernel32 -lntdll -L/usr/lib64 -lSM -lICE -lXxf86vm -lXext -lX11 -lGL ../../libs/port/libwine_port.a
wgl.c:(.text+0xec6): undefined reference to `gluNewTess'
You're missing libGLU.so.
We should probably fix configure.ac to catch this.
Huw.
Thanks Huw,
I had a second look and compared to my 32-bit box I was missing:
/usr/lib/libGLU.so -> libGLU.so.1
A rpm -q --whatprovides showed me the packages was mesa-libGLU-devel.
I found that on my 64-bit only the x86_64 package was installed. A 'yum install mesa-libGLU-devel' did the trick.
Cheers,
Paul.