[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problems linking the freetype library?
From: |
Werner LEMBERG |
Subject: |
Re: Problems linking the freetype library? |
Date: |
Wed, 01 Mar 2000 22:56:49 GMT |
> All is fine using gd, until I want to use the gdImageStringTTF
> function. Thats when I get a:
>
> /usr/bin/ld: Undefined symbols:
> _TT_Char_Index
> _TT_Close_Face
> _TT_Done_Glyph
> _TT_Done_Instance
> _TT_Get_CharMap
> _TT_Get_CharMap_Count
> _TT_Get_CharMap_ID
> _TT_Get_Face_Properties
> etc....
It seems that gd loads a DLL for handling TTF, and this DLL has not be
linked with the FreeType DLL.
Maybe a `-lttf' (or something similar) is missing during linking?
Werner