[C++-sig] (no subject)
Stefan Seefeld
seefeld at sympatico.ca
Sun Sep 7 19:28:04 CEST 2003
Lars Kunert wrote:
> Hi!
>
> I am considering to integrate am existing Qt-application into viewer
> called chimera. Chimera is a c++/python application with an integrated
> IDLE.
> Therefore I try to wrap my application into python by using boost.python.
> To get some clues how to achive this, I had look into the hippodraw
> project. As a priliminary test I tried to execute hippodraw within
> chimera. I got the following error message:
>
>
>>>>from hippo import HDApp
>
> Traceback (most recent call last):
> File "<pyshell#1>", line 1, in ?
> from hippo import HDApp
> ImportError: /usr/local/lib/libqt-mt.so.3: undefined symbol:
> FT_Seek_Stream
The symbol is defined by the FreeType library, I believe (which
Qt seems to use for font rendering). Make sure your loader can
find it (i.e. define the LD_LIBRRY_PATH appropriately), and the
error should go away.
Hope that helps,
Stefan
More information about the Cplusplus-sig
mailing list