[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bino-list] Build error
From: |
Martin Lambers |
Subject: |
Re: [Bino-list] Build error |
Date: |
Sun, 10 Oct 2010 19:58:32 +0200 |
User-agent: |
Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.12) Gecko/20100915 Thunderbird/3.0.8 |
On 10/10/10 00:41, Igor 'Lo' (И.L.) wrote:
> Hi all, trying to build bino 0.1 (release, not git):
> Gentoo x86_64, custom ffmpeg build && install path, custom --prefix option.
>
> make[4]: Entering directory `/tmp/bino-0.1/src'
> CXX decoder.o
> CXX decoder_ffmpeg.o
> CXX input.o
> CXX controller.o
> CXX video_output.o
> CXX xgl.o
> CXX video_output_opengl.o
> CXX audio_output.o
> CXX audio_output_openal.o
> CXX player.o
> CXX main.o
> CXXLD bino
> xgl.o: In function `xgl::CheckError(std::basic_string<char,
> std::char_traits<char>, std::allocator<char> > const&)':
> /tmp/bino-0.1/src/xgl.cpp:215: undefined reference to `gluErrorString'
> collect2: ld returned 1 exit status
Hi Igor,
thanks for the report. Bino did not link with libGLU explicitly. This
should be fixed in the repository now.
As a workaround for 0.1, it should be possible to add libGLU manually:
./configure LIBS="-lGLU"
make
Martin